From a4b6633988623aea1bc396519b6e91c04813bc71 Mon Sep 17 00:00:00 2001 From: James Mitchell Date: Wed, 25 Mar 2026 09:27:06 +0000 Subject: [PATCH] Remove space in operator"" _u8 which is deprecated --- include/hpcombi/epu8.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hpcombi/epu8.hpp b/include/hpcombi/epu8.hpp index 1bf0786b..ae229bb8 100644 --- a/include/hpcombi/epu8.hpp +++ b/include/hpcombi/epu8.hpp @@ -58,7 +58,7 @@ namespace HPCombi { /// Unsigned 8 bits int constant. inline constexpr uint8_t -operator"" _u8(unsigned long long arg) noexcept { // NOLINT +operator""_u8(unsigned long long arg) noexcept { // NOLINT(runtime/int) return static_cast(arg); }