1 | #include <IO/DoubleConverter.h> |
---|---|
2 | |
3 | namespace DB |
4 | { |
5 | template <bool emit_decimal_point> |
6 | const double_conversion::DoubleToStringConverter & DoubleConverter<emit_decimal_point>::instance() |
7 | { |
8 | static const double_conversion::DoubleToStringConverter instance{ |
9 | DoubleToStringConverterFlags<emit_decimal_point>::flags, "inf", "nan", 'e', -6, 21, 6, 1}; |
10 | |
11 | return instance; |
12 | } |
13 | |
14 | template class DoubleConverter<true>; |
15 | template class DoubleConverter<false>; |
16 | } |
17 |