From a928e8a3db1c0587b9e204cfc4063d562202f5c0 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Sun, 20 Apr 2025 18:02:06 +0300 Subject: [PATCH] types: Fix comment --- rpcs3/util/types.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/util/types.hpp b/rpcs3/util/types.hpp index 2604215c37..ddc69282dc 100644 --- a/rpcs3/util/types.hpp +++ b/rpcs3/util/types.hpp @@ -214,7 +214,7 @@ using atomic_be_t = atomic_t, Align>; template using atomic_le_t = atomic_t, Align>; -// Primary template (handles non-be_t types) +// Removes be_t<> wrapper from type be_ with nop fallback for unwrapped T template struct remove_be { using type = T; }; template