types: Fix comment

This commit is contained in:
kd-11 2025-04-20 18:02:06 +03:00
parent 8cb4737ac9
commit 86a5a48f4c

View file

@ -214,7 +214,7 @@ using atomic_be_t = atomic_t<be_t<T>, Align>;
template <typename T, usz Align = alignof(T)> template <typename T, usz Align = alignof(T)>
using atomic_le_t = atomic_t<le_t<T>, Align>; using atomic_le_t = atomic_t<le_t<T>, Align>;
// Primary template (handles non-be_t types) // Removes be_t<> wrapper from type be_<T> with nop fallback for unwrapped T
template<typename T> template<typename T>
struct remove_be { using type = T; }; struct remove_be { using type = T; };
template<typename T> template<typename T>