Skip to content

Commit 76e6f92

Browse files
committed
Fix legacy json_type_trait issue
1 parent fa564d7 commit 76e6f92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/jsoncons/utility/bigint.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ class basic_bigint : protected detail::basic_bigint_base<Allocator>
419419
}
420420

421421
template <typename CharT>
422-
static basic_bigint<Allocator> from_string_radix(const CharT* data, size_type length, uint8_t radix)
422+
static basic_bigint<Allocator> parse_radix(const CharT* data, size_type length, uint8_t radix)
423423
{
424424
if (!(radix >= 2 && radix <= 16u))
425425
{

0 commit comments

Comments
 (0)