diff options
Diffstat (limited to 'base/string_util.h')
-rw-r--r-- | base/string_util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/string_util.h b/base/string_util.h index c6b9fb1..5bacfcd 100644 --- a/base/string_util.h +++ b/base/string_util.h @@ -511,6 +511,8 @@ std::string JoinString(const std::vector<std::string>& parts, char s); // characters is added to result. void SplitStringAlongWhitespace(const std::wstring& str, std::vector<std::wstring>* result); +void SplitStringAlongWhitespace(const std::string& str, + std::vector<std::string>* result); // Replace $1-$2-$3..$9 in the format string with |a|-|b|-|c|..|i| respectively. // Additionally, $$ is replaced by $. The offsets parameter here can |