aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/cpp/util/strings.h
diff options
context:
space:
mode:
authorGravatar Han-Wen Nienhuys <hanwen@google.com>2015-05-27 16:12:30 +0000
committerGravatar Laurent Le Brun <laurentlb@google.com>2015-05-27 16:50:18 +0000
commit5e81faf82ec67d53437cc02501ea0fc13d94050c (patch)
tree90e8a8166d69bc7d225e820b988c4067b85a7640 /src/main/cpp/util/strings.h
parentcef25c44bc6c2ae8e5bd649228a9a9c39f057576 (diff)
Remove unused helper functions.
-- MOS_MIGRATED_REVID=94577279
Diffstat (limited to 'src/main/cpp/util/strings.h')
-rw-r--r--src/main/cpp/util/strings.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main/cpp/util/strings.h b/src/main/cpp/util/strings.h
index 0f0dfc1650..a778f46cc5 100644
--- a/src/main/cpp/util/strings.h
+++ b/src/main/cpp/util/strings.h
@@ -80,11 +80,6 @@ std::vector<string> Split(const string &contents, const char delimeter);
void SplitStringUsing(
const string &contents, const char delimeter, std::vector<string> *output);
-// Splits contents by delimeter with possible elements quoted by ' or ".
-// backslashes (\) can be used to escape the quotes or delimeter. Skips
-// empty subsections.
-std::vector<string> SplitQuoted(const string &contents, const char delimeter);
-
// Same as above, but adds results to output.
void SplitQuotedStringUsing(const string &contents, const char delimeter,
std::vector<string> *output);