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

@ -163,8 +163,10 @@ size_t tokenize(const std::string& source, char delimiter, char start_mark,
// Extract the first token from source as separated by delimiter, with
// duplicates of delimiter ignored. Return false if the delimiter could not be
// found, otherwise return true.
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);
// Safe sprintf to std::string
//void sprintf(std::string& value, size_t maxlen, const char * format, ...)