File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1819,7 +1819,7 @@ namespace variant_detail
1819
1819
{
1820
1820
jsoncons::string_view sv = j.as_string_view ();
1821
1821
null_back_insertable_byte_container cont;
1822
- auto result = decode_base16 (sv.begin (), sv.end (), cont);
1822
+ auto result = base16_to_bytes (sv.begin (), sv.end (), cont);
1823
1823
return result.ec == conv_errc::success ? true : false ;
1824
1824
}
1825
1825
return false ;
@@ -1844,7 +1844,7 @@ namespace variant_detail
1844
1844
else
1845
1845
{
1846
1846
jsoncons::string_view sv = j.as_string_view ();
1847
- auto result = decode_base16 (sv.begin (), sv.end (), bits);
1847
+ auto result = base16_to_bytes (sv.begin (), sv.end (), bits);
1848
1848
if (result.ec != conv_errc::success)
1849
1849
{
1850
1850
JSONCONS_THROW (conv_error (conv_errc::not_bitset));
You can’t perform that action at this time.
0 commit comments