Index: base/string_split.h |
diff --git a/base/string_split.h b/base/string_split.h |
index f2e8c86dd74e1e66ad404be17ea44502505a7567..883b12647a1c45d40ca593d2b845f0ff7c6c30c8 100644 |
--- a/base/string_split.h |
+++ b/base/string_split.h |
@@ -20,12 +20,6 @@ namespace base { |
// |str| begins with or ends with |s|, then an empty string is inserted. |
// |
// Every substring is trimmed of any leading or trailing white space. |
-// Where wchar_t is char16 (i.e. Windows), |c| must be in BMP |
-// (Basic Multilingual Plane). Elsewhere (Linux/Mac), wchar_t |
-// should be a valid Unicode code point (32-bit). |
-BASE_API void SplitString(const std::wstring& str, |
- wchar_t c, |
- std::vector<std::wstring>* r); |
// NOTE: |c| must be in BMP (Basic Multilingual Plane) |
BASE_API void SplitString(const string16& str, |
char16 c, |