Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Gorshenin <y@maps.me>2017-06-01 16:12:59 +0300
committerYuri Gorshenin <y@maps.me>2017-06-01 16:12:59 +0300
commitd95de0e1ecc1c509ca06063f9436c7b7bcc0256d (patch)
tree22610badafa27da2ca9cc59398bf51c21e80282c /indexer/search_string_utils.cpp
parent08b0166a665ab98bfaf1273df9aa6911387abc09 (diff)
Review fixes.
Diffstat (limited to 'indexer/search_string_utils.cpp')
-rw-r--r--indexer/search_string_utils.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/indexer/search_string_utils.cpp b/indexer/search_string_utils.cpp
index 88027211d6..9a651056ff 100644
--- a/indexer/search_string_utils.cpp
+++ b/indexer/search_string_utils.cpp
@@ -5,8 +5,6 @@
#include "base/macros.hpp"
#include "base/mem_trie.hpp"
-#include <cctype>
-
using namespace std;
using namespace strings;
@@ -29,10 +27,10 @@ void RemoveNumeroSigns(UniString & s)
}
size_t j = i + 1;
- while (j < n && isspace(s[j]))
+ while (j < n && IsASCIISpace(s[j]))
++j;
- if (j == n || isdigit(s[j]))
+ if (j == n || IsASCIIDigit(s[j]))
s[i] = ' ';
i = j;
@@ -68,9 +66,9 @@ UniString NormalizeAndSimplifyString(string const & s)
break;
// Some Danish-specific hacks.
case 0x00d8: // Ø
- case 0x00f8:
+ case 0x00f8: // ø
c = 'o';
- break; // ø
+ break;
case 0x0152: // Œ
case 0x0153: // œ
c = 'o';