From 9114f45ab87076a6998fb8a72958345cd2a94498 Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Fri, 20 Jan 2017 06:27:34 +0000 Subject: [PATCH] Still expose std::align_val_t in C++17 even if we don't have aligned new/delete. r292564 disabled the aligned new/delete overloads on platforms without posix_memalign. Unfortunately that patch also disabled the align_val_t definition in C++17 as well. This patch causes align_val_t to be exposed in C++17 regardless of if we have the new/delete overloads. llvm-svn: 292582 --- libcxx/include/new | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcxx/include/new b/libcxx/include/new index 6e43501d2991..86428f281dc1 100644 --- a/libcxx/include/new +++ b/libcxx/include/new @@ -145,7 +145,7 @@ public: #endif // defined(_LIBCPP_BUILDING_NEW) || (_LIBCPP_STD_VER > 11) -#ifndef _LIBCPP_HAS_NO_ALIGNED_ALLOCATION +#if !defined(_LIBCPP_HAS_NO_ALIGNED_ALLOCATION) || _LIBCPP_STD_VER > 14 #ifndef _LIBCPP_CXX03_LANG enum class _LIBCPP_ENUM_VIS align_val_t : size_t { }; #else -- GitLab