We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e424e3f commit f175ebaCopy full SHA for f175eba
include/fmt/compile.h
@@ -15,9 +15,10 @@
15
#include "format.h"
16
17
FMT_BEGIN_NAMESPACE
18
+FMT_BEGIN_EXPORT
19
20
// A compile-time string which is compiled into fast formatting code.
-FMT_EXPORT class compiled_string {};
21
+class compiled_string {};
22
23
template <typename S>
24
struct is_compiled_string : std::is_base_of<compiled_string, S> {};
@@ -59,6 +60,8 @@ template <detail::fixed_string Str> constexpr auto operator""_cf() {
59
60
} // namespace literals
61
#endif
62
63
+FMT_END_EXPORT
64
+
65
namespace detail {
66
67
template <typename T, typename... Tail>
0 commit comments