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