mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-24 21:16:56 +00:00
Fix linkage
This commit is contained in:
parent
098a8fdef8
commit
f43caef311
@ -1060,6 +1060,9 @@ int fmt::fprintf(std::FILE *f, StringRef format, ArgList args) {
|
|||||||
|
|
||||||
// Explicit instantiations for char.
|
// Explicit instantiations for char.
|
||||||
|
|
||||||
|
template const char *fmt::BasicFormatter<char>::format(
|
||||||
|
const char *&format_str, const fmt::internal::Arg &arg);
|
||||||
|
|
||||||
template void fmt::BasicFormatter<char>::format(
|
template void fmt::BasicFormatter<char>::format(
|
||||||
BasicStringRef<char> format, const ArgList &args);
|
BasicStringRef<char> format, const ArgList &args);
|
||||||
|
|
||||||
@ -1076,6 +1079,9 @@ template int fmt::internal::CharTraits<char>::format_float(
|
|||||||
|
|
||||||
// Explicit instantiations for wchar_t.
|
// Explicit instantiations for wchar_t.
|
||||||
|
|
||||||
|
template const wchar_t *fmt::BasicFormatter<wchar_t>::format(
|
||||||
|
const wchar_t *&format_str, const fmt::internal::Arg &arg);
|
||||||
|
|
||||||
template void fmt::BasicFormatter<wchar_t>::format(
|
template void fmt::BasicFormatter<wchar_t>::format(
|
||||||
BasicStringRef<wchar_t> format, const ArgList &args);
|
BasicStringRef<wchar_t> format, const ArgList &args);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user