Instantiate snprintf_float

This commit is contained in:
Victor Zverovich 2019-11-24 08:57:39 -08:00
parent 75fff1db64
commit 8877a67724

View File

@ -37,6 +37,11 @@ template FMT_API std::string internal::vformat<char>(
template FMT_API format_context::iterator internal::vformat_to( template FMT_API format_context::iterator internal::vformat_to(
internal::buffer<char>&, string_view, basic_format_args<format_context>); internal::buffer<char>&, string_view, basic_format_args<format_context>);
template FMT_API int internal::snprintf_float(double, int, internal::float_spec,
internal::buffer<char>&);
template FMT_API int internal::snprintf_float(long double, int,
internal::float_spec,
internal::buffer<char>&);
template FMT_API int internal::format_float(double, int, internal::float_spec, template FMT_API int internal::format_float(double, int, internal::float_spec,
internal::buffer<char>&); internal::buffer<char>&);
template FMT_API int internal::format_float(long double, int, template FMT_API int internal::format_float(long double, int,