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:
authorExMix <rahuba.youri@mapswithme.com>2015-03-31 11:40:18 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-11-30 16:04:12 +0300
commit475d0bcbcc7514e770818b8d17f4156ec5842c15 (patch)
tree9442f7cc15c98ee4054269e6d21e5d32438b2800 /base/string_utils.hpp
parentbd950780e20ed589d30a86c0aef0d063f36a4ebe (diff)
review fixes
Diffstat (limited to 'base/string_utils.hpp')
-rw-r--r--base/string_utils.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/base/string_utils.hpp b/base/string_utils.hpp
index 8e85b8f695..9030b1ef82 100644
--- a/base/string_utils.hpp
+++ b/base/string_utils.hpp
@@ -53,6 +53,7 @@ void AsciiToLower(string & s);
// TODO(AlexZ): current boost impl uses default std::locale() to trim.
// In general, it does not work for any unicode whitespace except ASCII U+0020 one.
void Trim(string & s);
+/// Remove any characters that contain in "anyOf" on left and right side of string s
void Trim(string & s, char const * anyOf);
void MakeLowerCaseInplace(string & s);