From 9395ef5fcb817c6145c7f0d274be87629c360bf2 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 22 Oct 2025 13:48:13 -0700 Subject: [PATCH] Don't include std::locale::collate value in the symbol --- include/fmt/base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/base.h b/include/fmt/base.h index f407888e..b9fe4e8f 100644 --- a/include/fmt/base.h +++ b/include/fmt/base.h @@ -923,7 +923,7 @@ class locale_ref { public: constexpr locale_ref() : locale_(nullptr) {} - template + template locale_ref(const Locale& loc) : locale_(&loc) { // Check if std::isalpha is found via ADL to reduce the chance of misuse. isalpha('x', loc);