comments update
This commit is contained in:
@@ -20,10 +20,10 @@ MlValue CsvParser::parseCSV(const std::string &csvSource) {
|
||||
std::string field;
|
||||
|
||||
std::vector<MlValue> parsed_data;
|
||||
parsed_data.reserve(128);
|
||||
parsed_data.reserve(128); // TODO introduce constant here
|
||||
|
||||
std::vector<MlValue> line;
|
||||
line.reserve(32);
|
||||
line.reserve(32); // TODO introduce constant here
|
||||
|
||||
std::string::const_iterator aChar = csvSource.begin();
|
||||
while (aChar != csvSource.end()) {
|
||||
|
||||
Reference in New Issue
Block a user