diff -r 7518b6265aa01bc33e8ad80cf578314593acab38 -r 95848a435a018b6c6d97b226b792d34ae25905e7 include/csvpp.h --- a/include/csvpp.h Tue Mar 25 22:32:45 2014 -0500 +++ b/include/csvpp.h Tue Mar 25 22:34:08 2014 -0500 @@ -24,7 +24,7 @@ // Adding support for custom delimiter character // Based on the patch by Hanifa // https://code.google.com/p/csvpp/issues/detail?id=2 - RowReader(std::string delimiter_char = ',', bool skipheader=false,const char * newline="\n") : skipheader(skipheader), newline(newline) { } + RowReader(std::string delimiter_char = ",", bool skipheader=false,const char * newline="\n") : skipheader(skipheader), newline(newline) { } void clear() { header.clear(); } friend std::istream & operator>>(std::istream & os, RowReader & r); friend std::ostream & operator<<(std::ostream & os, const RowWriter & r);