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