From 6abd8139f069c43d796593161b82a7d33406bf08 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Tue, 20 May 2025 22:25:49 -0400 Subject: [PATCH] Fix clangd warnings --- FacadeTest.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FacadeTest.cpp b/FacadeTest.cpp index 0eb89e3..5ba5f91 100644 --- a/FacadeTest.cpp +++ b/FacadeTest.cpp @@ -3,11 +3,11 @@ #include "VersionedMap.h" #include -inline weaselab::VersionedMap::Key operator"" _k(const char *str, size_t size) { +inline weaselab::VersionedMap::Key operator""_k(const char *str, size_t size) { return {reinterpret_cast(str), int(size)}; } -inline String operator"" _s(const char *str, size_t size) { +inline String operator""_s(const char *str, size_t size) { return String{reinterpret_cast(str), size}; } @@ -92,4 +92,4 @@ int main() { printMutation(*iter); } } -} \ No newline at end of file +}