Merge pull request #9279 from dumitru-stama/fixstring

Fixed a string class bug
This commit is contained in:
Rémi Verschelde 2017-06-20 19:45:29 +02:00 committed by GitHub
commit a22b9ce8ac
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ bool CharString::operator<(const CharString &p_right) const {
}
const char *this_str = get_data();
const char *that_str = get_data();
const char *that_str = p_right.get_data();
while (true) {
if (*that_str == 0 && *this_str == 0)