fix indent on tokenize_first function signatures

R=juberti@google.com, pthatcher@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/52499004

Cr-Commit-Position: refs/heads/master@{#9198}
This commit is contained in:
Donald Curtis
2015-05-15 13:14:24 -07:00
parent 42af6caf5c
commit 144d01850b
4 changed files with 22 additions and 22 deletions

View File

@ -611,8 +611,10 @@ size_t tokenize(const std::string& source, char delimiter, char start_mark,
return tokenize_append(remain_source, delimiter, fields);
}
bool tokenize_first(const std::string& source, const char delimiter,
std::string* token, std::string* rest) {
bool tokenize_first(const std::string& source,
const char delimiter,
std::string* token,
std::string* rest) {
// Find the first delimiter
size_t left_pos = source.find(delimiter);
if (left_pos == std::string::npos) {
@ -621,7 +623,7 @@ bool tokenize_first(const std::string& source, const char delimiter,
// Look for additional occurrances of delimiter.
size_t right_pos = left_pos + 1;
while(source[right_pos] == delimiter) {
while (source[right_pos] == delimiter) {
right_pos++;
}