ben-strasser / fast-cpp-csv-parser

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

Updated pointer checks to use C++11 nullptr, fixes #33 #34

Closed mmaraya closed 7 years ago

mmaraya commented 7 years ago

Changed three instances of byte_source != 0 to byte_source != nullptr and LLVM and BCC32 both seem to be happy with it.

ben-strasser commented 7 years ago

Hi,

thanks for the patch. I merged the code.

Best Regards Ben Strasser