Move compile string to detail

This commit is contained in:
Victor Zverovich
2022-05-30 07:06:36 -07:00
parent cb682f36f4
commit 926ddd0631
3 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -1762,7 +1762,7 @@ inline auto find_escape(const char* begin, const char* end)
std::string s = fmt::format(FMT_STRING("{:d}"), "foo");
\endrst
*/
#define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::compile_string, )
#define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string, )
template <size_t width, typename Char, typename OutputIt>
auto write_codepoint(OutputIt out, char prefix, uint32_t cp) -> OutputIt {