mirror of
https://github.com/fmtlib/fmt.git
synced 2025-10-27 12:11:44 +01:00
Partially implement Grisu3
This commit is contained in:
@@ -137,10 +137,10 @@ TEST(FPTest, FixedHandler) {
|
||||
digits::error);
|
||||
}
|
||||
|
||||
TEST(FPTest, Grisu2FormatCompilesWithNonIEEEDouble) {
|
||||
TEST(FPTest, GrisuFormatCompilesWithNonIEEEDouble) {
|
||||
fmt::memory_buffer buf;
|
||||
int exp = 0;
|
||||
grisu2_format(4.2f, buf, -1, false, exp);
|
||||
grisu_format(4.2f, buf, -1, false, exp);
|
||||
}
|
||||
|
||||
template <typename T> struct ValueExtractor : fmt::internal::function<T> {
|
||||
|
||||
Reference in New Issue
Block a user