Skip to content

Commit f437f98

Browse files
committed
fix: clean build warning
1 parent d6af6f7 commit f437f98

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

src/json.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -433,13 +433,6 @@ namespace json {
433433
return INV_HEX;
434434
}
435435

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-
443436
node read_int(iterator& it,
444437
iterator const& end,
445438
unsigned base,

0 commit comments

Comments
 (0)