From fc8675c95d751a7d2fd679150566ac785063c461 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Mon, 21 Sep 2026 14:48:06 +1000 Subject: [PATCH] dep/vixl: Fix deprecated-literal-operator warning --- dep/vixl/include/vixl/utils-vixl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dep/vixl/include/vixl/utils-vixl.h b/dep/vixl/include/vixl/utils-vixl.h index a6632b2fc..486b2ba6c 100644 --- a/dep/vixl/include/vixl/utils-vixl.h +++ b/dep/vixl/include/vixl/utils-vixl.h @@ -1435,7 +1435,7 @@ constexpr uint32_t Hash(const char* str, uint32_t hash = 0) { } } -constexpr uint32_t operator"" _h(const char* x, size_t) { return Hash(x); } +constexpr uint32_t operator""_h(const char* x, size_t) { return Hash(x); } } // namespace vixl