ben-strasser / fast-cpp-csv-parser

fast-cpp-csv-parser
BSD 3-Clause "New" or "Revised" License
2.09k stars 435 forks source link

Add necessary <limits> include when CSV_IO_NO_THREAD is defined. #127

Closed 5061726b6572 closed 2 years ago

5061726b6572 commented 2 years ago

If CSV_IO_NO_THREAD is defined the limits header is not indirectly included.

Tested with:

#define CSV_IO_NO_THREAD
#include "csv.h"

int main() { return 0; }
ben-strasser commented 2 years ago

thanks :)