Files
fmt/src/format.cc

47 lines
1.4 KiB
C++
Raw Normal View History

2018-03-21 07:51:56 -07:00
// Formatting library for C++
//
// Copyright (c) 2012 - 2016, Victor Zverovich
// All rights reserved.
//
// For the license information refer to format.h.
#include "fmt/format-inl.h"
2018-05-12 08:33:51 -07:00
FMT_BEGIN_NAMESPACE
2018-03-21 07:51:56 -07:00
template struct internal::basic_data<void>;
// Explicit instantiations for char.
template FMT_API char internal::thousands_sep(locale_provider *lp);
2018-03-21 07:51:56 -07:00
template void basic_fixed_buffer<char>::grow(std::size_t);
2018-04-08 07:03:44 -07:00
template void internal::arg_map<format_context>::init(
const basic_format_args<format_context> &args);
2018-03-21 07:51:56 -07:00
template FMT_API int internal::char_traits<char>::format_float(
2018-05-28 20:16:30 -07:00
char *buffer, std::size_t size, const char *format, int precision,
double value);
2018-03-21 07:51:56 -07:00
template FMT_API int internal::char_traits<char>::format_float(
2018-05-28 20:16:30 -07:00
char *buffer, std::size_t size, const char *format, int precision,
long double value);
2018-03-21 07:51:56 -07:00
// Explicit instantiations for wchar_t.
template FMT_API wchar_t internal::thousands_sep(locale_provider *lp);
2018-03-21 07:51:56 -07:00
template void basic_fixed_buffer<wchar_t>::grow(std::size_t);
template void internal::arg_map<wformat_context>::init(
const basic_format_args<wformat_context> &args);
2018-03-21 07:51:56 -07:00
template FMT_API int internal::char_traits<wchar_t>::format_float(
wchar_t *buffer, std::size_t size, const wchar_t *format,
2018-05-28 20:16:30 -07:00
int precision, double value);
2018-03-21 07:51:56 -07:00
template FMT_API int internal::char_traits<wchar_t>::format_float(
wchar_t *buffer, std::size_t size, const wchar_t *format,
2018-05-28 20:16:30 -07:00
int precision, long double value);
2018-05-12 08:33:51 -07:00
FMT_END_NAMESPACE