mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
17 lines
457 B
C++
17 lines
457 B
C++
#include <IO/DoubleConverter.h>
|
|
|
|
namespace DB
|
|
{
|
|
template <bool emit_decimal_point>
|
|
const double_conversion::DoubleToStringConverter & DoubleConverter<emit_decimal_point>::instance()
|
|
{
|
|
static const double_conversion::DoubleToStringConverter instance{
|
|
DoubleToStringConverterFlags<emit_decimal_point>::flags, "inf", "nan", 'e', -6, 21, 6, 1};
|
|
|
|
return instance;
|
|
}
|
|
|
|
template class DoubleConverter<true>;
|
|
template class DoubleConverter<false>;
|
|
}
|