FMT_MODULE_EXPORT_* -> FMT_EXPORT_*

This commit is contained in:
Victor Zverovich
2023-04-10 08:33:39 -07:00
parent 4613d48fd3
commit 1d0257e4c0
10 changed files with 29 additions and 28 deletions

View File

@@ -14,7 +14,7 @@
#include "format.h"
FMT_BEGIN_NAMESPACE
FMT_MODULE_EXPORT_BEGIN
FMT_EXPORT_BEGIN
template <typename T> struct printf_formatter { printf_formatter() = delete; };
@@ -673,7 +673,7 @@ inline auto printf(const S& fmt, const T&... args) -> int {
fmt::make_format_args<basic_printf_context_t<char_t<S>>>(args...));
}
FMT_MODULE_EXPORT_END
FMT_EXPORT_END
FMT_END_NAMESPACE
#endif // FMT_PRINTF_H_