Vincent La
Vincent La
2.5 years later and it still doesn't work
Thanks for reporting this. ThreadSafeDeque is a generic container, and in this case it is used to hold CSVRow objects, which do contain pointers.
Sorry for taking so long to respond, but this is a great suggestion. `CSVReader` didn't always have a templated stream constructor. Previously, it really only supported reading from `std::string` (and...
Sounds like a missing `#include` as the compiler indicates. I'll take a look.
The Makefile is really only used for code coverage purposes. I've tried using a popular CMake code coverage configuration but had some difficulty.
Could be a nice addition. This library was created before C++20 was standardized.
The parser might not load the entire file at once if it's large, and once it reads a row, it discards it (unless you save it), so a random access...
Based on your error messages, you have an ancient compiler. I suggest upgrading it.
I'll see what I can do. I appreciate the example patch you've provided. I didn't expect people to try to use this library on embedded devices (where `ITERATION_CHUNK_SIZE` is too...
Thanks for your report, I'll take a look