diff options
Diffstat (limited to 'libcxx/test/std/containers/sequences/array/array.tuple/get.pass.cpp')
-rw-r--r-- | libcxx/test/std/containers/sequences/array/array.tuple/get.pass.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/libcxx/test/std/containers/sequences/array/array.tuple/get.pass.cpp b/libcxx/test/std/containers/sequences/array/array.tuple/get.pass.cpp index d9e242cd420..c4557078fc4 100644 --- a/libcxx/test/std/containers/sequences/array/array.tuple/get.pass.cpp +++ b/libcxx/test/std/containers/sequences/array/array.tuple/get.pass.cpp @@ -14,12 +14,17 @@ #include <array> #include <cassert> -#if __cplusplus > 201103L +#include "test_macros.h" + +#include "../suppress_array_warnings.h" + + +#if TEST_STD_VER > 11 struct S { std::array<int, 3> a; int k; constexpr S() : a{1,2,3}, k(std::get<2>(a)) {} - }; +}; constexpr std::array<int, 2> getArr () { return { 3, 4 }; } #endif @@ -35,7 +40,7 @@ int main() assert(c[1] == 5.5); assert(c[2] == 3.5); } -#if _LIBCPP_STD_VER > 11 +#if TEST_STD_VER > 11 { typedef double T; typedef std::array<T, 3> C; |