Skip to content
Snippets Groups Projects
Commit 9ff9543d authored by Aaron's avatar Aaron
Browse files

remove comment

parent 0783e741
No related branches found
No related tags found
No related merge requests found
...@@ -50,9 +50,6 @@ void Tokenize(const string &str, vector<int> &elems, char delimiter = '\t') ...@@ -50,9 +50,6 @@ void Tokenize(const string &str, vector<int> &elems, char delimiter = '\t')
inline inline
void TokenizeColumns(const string &str, vector<int> &elems) void TokenizeColumns(const string &str, vector<int> &elems)
{ {
// http://stackoverflow.com/questions/236129/how-to-split-a-string-in-c/236803#236803
// NOTE: this approach intentionally allows consecutive delimiters
vector<string> col_sets; vector<string> col_sets;
Tokenize(str, col_sets, ','); Tokenize(str, col_sets, ',');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment