Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions csv.h
Original file line number Diff line number Diff line change
Expand Up @@ -1074,6 +1074,9 @@ namespace io{

template<class overflow_policy, class T>
void parse(char*col, T&x){
// Mute unused variable compiler warning
(void)col;
(void)x;
// GCC evalutes "false" when reading the template and
// "sizeof(T)!=sizeof(T)" only when instantiating it. This is why
// this strange construct is used.
Expand Down