Commit 8877a677 authored by Victor Zverovich's avatar Victor Zverovich

Instantiate snprintf_float

parent 75fff1db
......@@ -37,6 +37,11 @@ template FMT_API std::string internal::vformat<char>(
template FMT_API format_context::iterator internal::vformat_to(
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,
internal::buffer<char>&);
template FMT_API int internal::format_float(long double, int,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment