From e9b3ad4a5fe2e9e13d227eff7db93bbff2794b0c Mon Sep 17 00:00:00 2001 From: joaquintides Date: Fri, 31 Mar 2023 13:07:02 +0200 Subject: [PATCH] reverted --- include/boost/unordered/detail/foa/core.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/unordered/detail/foa/core.hpp b/include/boost/unordered/detail/foa/core.hpp index df08a10a..79d8313d 100644 --- a/include/boost/unordered/detail/foa/core.hpp +++ b/include/boost/unordered/detail/foa/core.hpp @@ -180,7 +180,7 @@ struct group15 struct dummy_group_type { - /*alignas(16)*/ unsigned char storage[N+1]={0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0}; + alignas(16) unsigned char storage[N+1]={0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0}; }; inline void initialize() @@ -289,7 +289,7 @@ private: (char)m[ 7],(char)m[ 6],(char)m[ 5],(char)m[ 4], (char)m[ 3],(char)m[ 2],(char)m[ 1],(char)m[ 0]); #else - return /*_mm_load_si128*/_mm_loadu_si128(reinterpret_cast(m)); + return _mm_load_si128(reinterpret_cast(m)); #endif } @@ -359,7 +359,7 @@ private: return at(N); } - /*alignas(16)*/ slot_type m[16]; + alignas(16) slot_type m[16]; }; #elif defined(BOOST_UNORDERED_LITTLE_ENDIAN_NEON)