Replace grisu2_specs with core_format_specs

This commit is contained in:
Victor Zverovich
2018-10-17 08:55:45 -07:00
parent b1ca608bac
commit bda5f9a556
3 changed files with 34 additions and 41 deletions

View File

@@ -105,7 +105,7 @@ TEST(FPTest, GetCachedPower) {
TEST(FPTest, Grisu2FormatCompilesWithNonIEEEDouble) {
size_t size = 0;
fmt::memory_buffer buf;
grisu2_format(4.2f, buf, fmt::internal::grisu2_specs());
grisu2_format(4.2f, buf, fmt::core_format_specs());
}
template <typename T>