We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7ac9af commit 670ddcdCopy full SHA for 670ddcd
include/fmt/base.h
@@ -907,7 +907,7 @@ class locale_ref {
907
FMT_END_EXPORT
908
909
// forward declaration
910
-template <typename Char> class runtime_format_string;
+template <typename Char> struct runtime_format_string;
911
912
namespace detail {
913
@@ -944,7 +944,7 @@ constexpr auto to_string_view(runtime_format_string<Char> s)
944
return s.str;
945
}
946
// forward declaration of internal compile-time string type base
947
-class compile_string;
+struct compile_string;
948
template <typename Char, typename S,
949
FMT_ENABLE_IF(std::is_base_of<detail::compile_string, S>::value&&
950
std::is_same<typename S::char_type, Char>::value)>
0 commit comments