From 3d9f39814c7f806adfb2bb185c0de394b0848da2 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 26 Jan 2025 19:23:41 +0200 Subject: [PATCH] Re-enable failing tests --- test/array_iterator_test_cx.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/test/array_iterator_test_cx.cpp b/test/array_iterator_test_cx.cpp index 10eef67..1ec91ac 100644 --- a/test/array_iterator_test_cx.cpp +++ b/test/array_iterator_test_cx.cpp @@ -39,20 +39,17 @@ template void test2() { constexpr boost::array a = {}; - // iterator access is not constexpr for boost::array - // it is for std::array, though, so we should change it - STATIC_ASSERT( a.begin() == a.end() ); STATIC_ASSERT( a.cbegin() == a.cend() ); } int main() { - // test1(); + test1(); test1(); test1(); - // test2(); + test2(); } #endif