ben-strasser / fast-cpp-csv-parser

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

too many column names specified #25

Closed bitnick10 closed 8 years ago

bitnick10 commented 8 years ago

when I use in.read_row(x,y,z,a,b,c),compiler said that "error C2338: too many columns specified"

SeaPickle754 commented 1 year ago

To those who are wondering, you can fix this by turning io::CSVReader<3> in("ram.csv"); to io::CSVReader<6> in("ram.csv");.