Skip to content

Commit

Permalink
Fix csv exponential number parsing issue #365
Browse files Browse the repository at this point in the history
  • Loading branch information
danielaparker committed May 13, 2022
1 parent 1ebe2be commit 38c6472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/jsoncons_ext/csv/csv_parser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1943,7 +1943,7 @@ class basic_csv_parser : public ser_context
break;
case '+':
break;
case '1':case '2':case '3':case '4':case '5':case '6':case '7':case '8':case '9':
case '0':case '1':case '2':case '3':case '4':case '5':case '6':case '7':case '8':case '9':
state = numeric_check_state::exp;
buffer.push_back(*p);
break;
Expand Down

0 comments on commit 38c6472

Please sign in to comment.