Add support for fmt 11.0

Resolves #1735
This commit is contained in:
Ray Speth
2024-07-25 10:52:46 -04:00
committed by Bryan Weber
parent d28932ac8a
commit feb64c2e02
2 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -222,7 +222,7 @@ config_options = [
options with spaces, for example, "cxx_flags='-g -Wextra -O3 --std=c++14'"
""",
{
"cl": "/EHsc /std:c++17",
"cl": "/EHsc /std:c++17 /utf-8",
"default": "-std=c++17"
}),
Option(
+8
View File
@@ -42,4 +42,12 @@ void fmt_append(fmt::memory_buffer& b, const std::string& tmpl, Args... args) {
}
#endif
#if FMT_VERSION > 100000
#if CT_USE_SYSTEM_FMT
#include <fmt/ranges.h>
#else
#include <fmt/join.h>
#endif
#endif
#endif