Fixed AlmostEqual() algorithm.

This commit is contained in:
Yuri Gorshenin 2015-03-10 15:20:51 +03:00 committed by Alex Zolotarev
parent 5f7ac15890
commit 25a319dc1a

View file

@ -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;
}