Skip to content

Commit bd2c69a

Browse files
committed
Fix types
1 parent a258f25 commit bd2c69a

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

test/benchmarks.cpp

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -482,30 +482,30 @@ int main()
482482
std::cerr << "\n===== <charconv> to_chars =====\n";
483483
test_to_chars<float>("float");
484484
test_to_chars<double>("double");
485-
test_to_chars<decimal32>("decimal32");
486-
test_to_chars<decimal64>("decimal64");
487-
test_to_chars<decimal128>("decimal128");
488-
test_to_chars<decimal32_fast>("dec32_fast");
489-
test_to_chars<decimal64_fast>("dec64_fast");
490-
test_to_chars<decimal128_fast>("dec128_fast");
485+
test_to_chars<decimal32_t>("decimal32_t");
486+
test_to_chars<decimal64_t>("decimal64_t");
487+
test_to_chars<decimal128_t>("decimal128_t");
488+
test_to_chars<decimal_fast32_t>("dec32_fast");
489+
test_to_chars<decimal_fast64_t>("dec64_fast");
490+
test_to_chars<decimal_fast128_t>("dec128_fast");
491491

492492
std::cerr << "\n===== <charconv> from_chars =====\n";
493493
test_from_chars<float>(false, "float");
494494
test_from_chars<float>(true, "float");
495495
test_from_chars<double>(false, "double");
496496
test_from_chars<double>(true, "double");
497-
test_from_chars<decimal32>(false, "decimal32");
498-
test_from_chars<decimal32>(true, "decimal32");
499-
test_from_chars<decimal64>(false, "decimal64");
500-
test_from_chars<decimal64>(true, "decimal64");
501-
test_from_chars<decimal128>(false, "decimal128");
502-
test_from_chars<decimal128>(true, "decimal128");
503-
test_from_chars<decimal32_fast>(false, "dec32_fast");
504-
test_from_chars<decimal32_fast>(true, "dec32_fast");
505-
test_from_chars<decimal64_fast>(false, "dec64_fast");
506-
test_from_chars<decimal64_fast>(true, "dec64_fast");
507-
test_from_chars<decimal128_fast>(false, "dec128_fast");
508-
test_from_chars<decimal128_fast>(true, "dec128_fast");
497+
test_from_chars<decimal32_t>(false, "decimal32_t");
498+
test_from_chars<decimal32_t>(true, "decimal32_t");
499+
test_from_chars<decimal64_t>(false, "decimal64_t");
500+
test_from_chars<decimal64_t>(true, "decimal64_t");
501+
test_from_chars<decimal128_t>(false, "decimal128_t");
502+
test_from_chars<decimal128_t>(true, "decimal128_t");
503+
test_from_chars<decimal_fast32_t>(false, "dec32_fast");
504+
test_from_chars<decimal_fast32_t>(true, "dec32_fast");
505+
test_from_chars<decimal_fast64_t>(false, "dec64_fast");
506+
test_from_chars<decimal_fast64_t>(true, "dec64_fast");
507+
test_from_chars<decimal_fast128_t>(false, "dec128_fast");
508+
test_from_chars<decimal_fast128_t>(true, "dec128_fast");
509509
#endif
510510
std::cerr << std::endl;
511511

0 commit comments

Comments
 (0)