diff options
author | 2023-03-26 02:16:04 +1100 | |
---|---|---|
committer | 2023-03-26 02:16:04 +1100 | |
commit | aa7fb5291fb831f855ece9a9fbf7d3f7ab8d0a3b (patch) | |
tree | c294f4283db11fd0d2b4c0a2742bbe5195d9ee7b /src/lib/util/strformat.cpp | |
parent | 4cf33cfe0a427d24d754c134eb94b9d1a67da637 (diff) |
Pacify clang, and more noexcept.
Diffstat (limited to 'src/lib/util/strformat.cpp')
-rw-r--r-- | src/lib/util/strformat.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/lib/util/strformat.cpp b/src/lib/util/strformat.cpp index 47bfdde6715..f62ba55dc2d 100644 --- a/src/lib/util/strformat.cpp +++ b/src/lib/util/strformat.cpp @@ -135,14 +135,4 @@ template std::wostream::off_type stream_format(std::wostream &, format_argument_ } // namespace detail -template std::string string_format(format_argument_pack<char> const &); -template std::string string_format(format_argument_pack<char> &&); -template std::string string_format(std::locale const &, format_argument_pack<char> const &); -template std::string string_format(std::locale const &, format_argument_pack<char> &&); - -template std::wstring string_format(format_argument_pack<wchar_t> const &); -template std::wstring string_format(format_argument_pack<wchar_t> &&); -template std::wstring string_format(std::locale const &, format_argument_pack<wchar_t> const &); -template std::wstring string_format(std::locale const &, format_argument_pack<wchar_t> &&); - } // namespace util |