aboutsummaryrefslogtreecommitdiff
path: root/src/processor/tokenize.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/processor/tokenize.h')
-rw-r--r--src/processor/tokenize.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/processor/tokenize.h b/src/processor/tokenize.h
index 9ff571d5..c4480aa8 100644
--- a/src/processor/tokenize.h
+++ b/src/processor/tokenize.h
@@ -50,13 +50,13 @@ namespace google_breakpad {
// Tokenize, but may be treated as a failure if the caller expects an
// exact, as opposed to maximum, number of tokens.
-bool Tokenize(char *line,
- const char *separators,
+bool Tokenize(char* line,
+ const char* separators,
int max_tokens,
- std::vector<char*> *tokens);
+ std::vector<char*>* tokens);
// For convenience, since you need a char* to pass to Tokenize.
// You can call StringToVector on a string, and use &vec[0].
-void StringToVector(const string &str, std::vector<char> &vec);
+void StringToVector(const string& str, std::vector<char>& vec);
} // namespace google_breakpad