re-adding END_ROW to prevent crash (?!)

This commit is contained in:
Martin Brodbeck 2019-09-26 08:43:36 +02:00
parent fb98c3786e
commit 6b25c7c9cf
1 changed files with 4 additions and 0 deletions

View File

@ -23,13 +23,17 @@ std::size_t ExcelReader::readSellersFromFile(const fs::path& filePath, Marketpla
auto ws = wb.sheet_by_index(0);
const int START_ROW = 5;
const int END_ROW = 503;
int rowCount{};
for (const auto& row : ws.rows(false)) {
if (rowCount < START_ROW) {
++rowCount;
continue;
} else if (rowCount > END_ROW) {
break;
}
if (row[2].value<std::string>().empty() && row[3].value<std::string>().empty()) {
++rowCount;
continue;