From b95fd6132be3bdc647272a7aa523886f156b7b5f Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 25 Oct 2025 07:17:41 -0700 Subject: [PATCH] Avoid an ABI break for clang --- 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 77f63cd2..2227545d 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);