forked from organicmaps/organicmaps
Fixed AlmostEqual() algorithm.
This commit is contained in:
parent
5f7ac15890
commit
25a319dc1a
1 changed files with 4 additions and 2 deletions
|
@ -233,8 +233,10 @@ bool AlmostEqual(string const & str1, string const & str2, size_t mismatchedCoun
|
|||
mis = mismatch(mis.first, str1End, mis.second);
|
||||
if (mis.first == str1End && mis.second == str2End)
|
||||
return true;
|
||||
++mis.first;
|
||||
++mis.second;
|
||||
if (mis.first != str1End)
|
||||
++mis.first;
|
||||
if (mis.second != str2End)
|
||||
++mis.second;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue