From e30faddb720037df470c752dd60deaf3ac75c5d7 Mon Sep 17 00:00:00 2001 From: Cameron Angus Date: Mon, 23 Sep 2024 15:25:31 +0900 Subject: [PATCH] Replace one more macro usage with 'constexpr'. --- 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 9d02f25a32048..de4b2cd094727 100644 --- a/include/fmt/base.h +++ b/include/fmt/base.h @@ -2608,7 +2608,7 @@ class context : private detail::locale_ref { FMT_CONSTEXPR auto out() -> iterator { return out_; } // Advances the begin iterator to `it`. - FMT_CONSTEXPR void advance_to(iterator) {} + constexpr void advance_to(iterator) {} FMT_CONSTEXPR auto locale() -> detail::locale_ref { return *this; } };