From c8189d26a2e1d57d1ce227b02796276337fba5ca Mon Sep 17 00:00:00 2001 From: Stefan Boberg Date: Fri, 20 Sep 2024 16:53:00 +0200 Subject: made fmt formatter format function const (#162) this appears to be required as of fmt v11 --- src/zenutil/include/zenutil/cache/cache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/zenutil') diff --git a/src/zenutil/include/zenutil/cache/cache.h b/src/zenutil/include/zenutil/cache/cache.h index 5e12c488c..20299a667 100644 --- a/src/zenutil/include/zenutil/cache/cache.h +++ b/src/zenutil/include/zenutil/cache/cache.h @@ -23,7 +23,7 @@ template<> struct fmt::formatter : formatter { template - auto format(const zen::CacheRequestContext& Context, FormatContext& ctx) + auto format(const zen::CacheRequestContext& Context, FormatContext& ctx) const { zen::ExtendableStringBuilder<64> String; Context.SessionId.ToString(String); -- cgit v1.2.3