[Windows] undefine DELETE macro if defined

This commit is contained in:
Martin Brodbeck 2020-02-12 16:13:16 +01:00
parent ff9dc9b05e
commit 01bf3c29a2
1 changed files with 4 additions and 0 deletions

View File

@ -5,6 +5,10 @@
#include <csv.hpp> #include <csv.hpp>
#ifdef DELETE
#undef DELETE
#endif
namespace fs = std::filesystem; namespace fs = std::filesystem;
std::size_t CsvReader::readSellersFromFile(const fs::path& filePath, Marketplace* market) std::size_t CsvReader::readSellersFromFile(const fs::path& filePath, Marketplace* market)