Skip to content

Commit

Permalink
Whitespace fix for utils.h
Browse files Browse the repository at this point in the history
  • Loading branch information
cpearce committed Jul 30, 2011
1 parent b177e46 commit e132aeb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ bool ContainsKey(const map<string,string> m, const string& key);
/*
Usage:
vector<string> tokens;
string str("Split,me up!Word2 Word3.");
Tokenize(str, tokens, ",<'> " );
vector <string>::iterator iter;
for(iter = tokens.begin();iter!=tokens.end();iter++){
cout<< (*iter) << endl;
vector<string> tokens;
string str("Split,me up!Word2 Word3.");
Tokenize(str, tokens, ",<'> " );
vector <string>::iterator iter;
for(iter = tokens.begin();iter!=tokens.end();iter++){
cout<< (*iter) << endl;
}
*/
Expand Down

0 comments on commit e132aeb

Please sign in to comment.