From d370ae1095e3b889dbf0cf4e15395f472e9377a4 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Mon, 3 Oct 2022 18:49:24 +0200 Subject: [PATCH] stopped relying on __STDCPP_DEFAULT_NEW_ALIGNMENT__ for now --- include/boost/unordered/detail/foa.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/unordered/detail/foa.hpp b/include/boost/unordered/detail/foa.hpp index 1f4ec897..3da7554f 100644 --- a/include/boost/unordered/detail/foa.hpp +++ b/include/boost/unordered/detail/foa.hpp @@ -815,7 +815,7 @@ struct subaligned_table_arrays: template using table_arrays=typename std::conditional< -#if defined(__STDCPP_DEFAULT_NEW_ALIGNMENT__) +#if 0&&defined(__STDCPP_DEFAULT_NEW_ALIGNMENT__) sizeof(Group)<=__STDCPP_DEFAULT_NEW_ALIGNMENT__, #else sizeof(Group)<=alignof(std::max_align_t),