some TODOs removed..

This commit is contained in:
2021-08-14 11:33:02 +02:00
parent 6921421a65
commit 4665705c3d
10 changed files with 113 additions and 78 deletions

View File

@@ -62,7 +62,7 @@ std::string Table::csv_string() {
auto col = m_row.ith_column(i);
if (!col->isNull()) {
csv_line += col->getStringValue(); // TODO handle enclosing commas etc
csv_line += col->getStringValue(); // TODO handle enclosing commas etc
}
}
out_string += csv_line;