to get rid of exception that was leftover from debugging

This commit is contained in:
Cameron T. Druyor 2016-04-30 12:49:42 -04:00
parent 31493c39b0
commit 223793caa0

View File

@ -7940,8 +7940,6 @@ class basic_json
++trailing_zeros; ++trailing_zeros;
else if((c > '0' and c <= '9') or c == '-') else if((c > '0' and c <= '9') or c == '-')
break; break;
else
throw std::logic_error("unexpected character: "+std::to_string(c));
} }
precision -= (trailing_zeros + 1); precision -= (trailing_zeros + 1);
} }