comments update

This commit is contained in:
2021-07-23 00:02:03 +02:00
parent 5005644d98
commit 513c8da358
3 changed files with 6 additions and 5 deletions

View File

@@ -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()) {