forked from organicmaps/organicmaps
Avoid UniChar conflict with Apple’s define.
This commit is contained in:
parent
4796e428ba
commit
48c686fb16
1 changed files with 3 additions and 4 deletions
|
@ -10,11 +10,10 @@ namespace search
|
|||
// It does some magic text transformation which greatly helps us to improve our search.
|
||||
inline strings::UniString NormalizeAndSimplifyString(string const & s)
|
||||
{
|
||||
using namespace strings;
|
||||
UniString uniString = MakeUniString(s);
|
||||
strings::UniString uniString = strings::MakeUniString(s);
|
||||
for (size_t i = 0; i < uniString.size(); ++i)
|
||||
{
|
||||
UniChar & c = uniString[i];
|
||||
strings::UniChar & c = uniString[i];
|
||||
switch (c)
|
||||
{
|
||||
// Replace "d with stroke" to simple d letter. Used in Vietnamese.
|
||||
|
@ -48,7 +47,7 @@ inline strings::UniString NormalizeAndSimplifyString(string const & s)
|
|||
NormalizeInplace(uniString);
|
||||
|
||||
// Remove accents that can appear after NFKD normalization.
|
||||
uniString.erase_if([](UniChar const & c)
|
||||
uniString.erase_if([](strings::UniChar const & c)
|
||||
{
|
||||
// ̀ COMBINING GRAVE ACCENT
|
||||
// ́ COMBINING ACUTE ACCENT
|
||||
|
|
Loading…
Add table
Reference in a new issue