Integrate Grisu

This commit is contained in:
Victor Zverovich
2018-10-14 14:33:25 -07:00
parent 699297520a
commit 50b18a3c10
5 changed files with 201 additions and 195 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ TEST(FPTest, GetCachedPower) {
TEST(FPTest, Grisu2FormatCompilesWithNonIEEEDouble) {
size_t size = 0;
fmt::internal::grisu2_format(4.2f, FMT_NULL, size, 0, 0, false);
grisu2_format(4.2f, FMT_NULL, size, fmt::internal::grisu2_specs());
}
template <typename T>