Skip to content
Snippets Groups Projects
Commit 362d3838 authored by Evgeny Lavrik's avatar Evgeny Lavrik
Browse files

Patch for csv_parser

parent 3ba2dfb2
No related branches found
No related tags found
No related merge requests found
......@@ -1168,8 +1168,7 @@ private:
}
else
{
double d = to_double_(buffer.data(), buffer.length());
handler.double_value(d, number_format(format), *this);
handler.string_value(value, *this);
}
}
else
......@@ -1181,8 +1180,7 @@ private:
}
else
{
double d = to_double_(buffer.data(), buffer.length());
handler.double_value(d, number_format(format), *this);
handler.string_value(value, *this);
}
}
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment