[search] Treat “и” and “й” as equal in tokens matching.

This commit is contained in:
vng 2015-06-11 13:41:21 +03:00 committed by Alex Zolotarev
parent e56bf8f422
commit 66c0a27d16

View file

@ -39,7 +39,12 @@ inline strings::UniString NormalizeAndSimplifyString(string const & s)
break;
}
}
MakeLowerCaseInplace(uniString);
NormalizeInplace(uniString);
return uniString;
/*
// Just after lower casing is a correct place to avoid normalization for specific chars.
static auto const isSpecificChar = [](UniChar c) -> bool
{
@ -60,6 +65,7 @@ inline strings::UniString NormalizeAndSimplifyString(string const & s)
i = j + 1;
}
return result;
*/
}
template <class DelimsT, typename F>