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

@@ -683,7 +683,7 @@ struct formatter<T, Char,
}
};
FMT_MODULE_EXPORT_BEGIN
FMT_EXPORT_BEGIN
/**
\rst
@@ -726,7 +726,7 @@ auto join(std::initializer_list<T> list, string_view sep)
return join(std::begin(list), std::end(list), sep);
}
FMT_MODULE_EXPORT_END
FMT_EXPORT_END
FMT_END_NAMESPACE
#endif // FMT_RANGES_H_