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:
@ -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, ...)
|
||||
|
||||
Reference in New Issue
Block a user