Returns a string that consists of `num` internal delimiter characters */
| 510 | Returns a string that consists of `num` internal delimiter characters |
| 511 | */ |
| 512 | std::string CsvDataStorage::emptyCellsString(table_index_t num) { |
| 513 | std::string ret = ""; |
| 514 | for( table_index_t c = 0; c < num; ++c) { |
| 515 | ret.push_back( static_cast<char>(TCRUNCHER_UTF_8_DELIMITER)); |
| 516 | } |
| 517 | return ret; |
| 518 | } |
| 519 | |
| 520 | |
| 521 |