Don't do unnecessary Tokenize.

This commit is contained in:
vng 2012-08-23 20:48:54 +03:00 committed by Alex Zolotarev
parent 339f1a2919
commit f6ad1defc3

View file

@ -83,8 +83,8 @@ namespace borders
if (line.empty())
continue;
/// @todo no need to tokenize by '|'
strings::Tokenize(line, "|", bind<void>(ref(toDo), _1));
// in polygons file every country is a separate string
toDo(line);
toDo.Finish();
}
}