We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6af6f7 commit f437f98Copy full SHA for f437f98
1 file changed
src/json.cpp
@@ -433,13 +433,6 @@ namespace json {
433
return INV_HEX;
434
}
435
436
- unsigned hex_digit(iterator& it, iterator const& end) {
437
- if (it == end) return INV_HEX;
438
- auto const val = hex_digit(*it);
439
- if (val < INV_HEX) ++it;
440
- return val;
441
- }
442
-
443
node read_int(iterator& it,
444
iterator const& end,
445
unsigned base,
0 commit comments