| Index: base/string_split.cc
|
| diff --git a/base/string_split.cc b/base/string_split.cc
|
| index 2b1a03700618821a6697b8024c071056c44bd986..cb9ee7aae2e637f547430774174dc65d03935bc6 100644
|
| --- a/base/string_split.cc
|
| +++ b/base/string_split.cc
|
| @@ -200,17 +200,10 @@ void SplitStringAlongWhitespaceT(const STR& str, std::vector<STR>* result) {
|
| }
|
| }
|
|
|
| -void SplitStringAlongWhitespace(const std::wstring& str,
|
| - std::vector<std::wstring>* result) {
|
| - SplitStringAlongWhitespaceT(str, result);
|
| -}
|
| -
|
| -#if !defined(WCHAR_T_IS_UTF16)
|
| void SplitStringAlongWhitespace(const string16& str,
|
| std::vector<string16>* result) {
|
| SplitStringAlongWhitespaceT(str, result);
|
| }
|
| -#endif
|
|
|
| void SplitStringAlongWhitespace(const std::string& str,
|
| std::vector<std::string>* result) {
|
|
|