From 47fd811efc8e42fe8485600a1f36f0ac5f927596 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Sat, 12 Oct 2024 16:42:52 -0700 Subject: [PATCH] Fix new clang warning --- Internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Internal.h b/Internal.h index c3555c3..c9d5833 100644 --- a/Internal.h +++ b/Internal.h @@ -538,7 +538,7 @@ struct ReferenceImpl { using Key = ConflictSet::Key; -inline Key operator"" _s(const char *str, size_t size) { +inline Key operator""_s(const char *str, size_t size) { return {reinterpret_cast(str), int(size)}; }