Skip to content

Commit 3d9f398

Browse files
committed
Re-enable failing tests
1 parent 89f09e3 commit 3d9f398

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

test/array_iterator_test_cx.cpp

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,20 +39,17 @@ template<class T> void test2()
3939
{
4040
constexpr boost::array<T, 0> a = {};
4141

42-
// iterator access is not constexpr for boost::array<T, 0>
43-
// it is for std::array<T, 0>, though, so we should change it
44-
4542
STATIC_ASSERT( a.begin() == a.end() );
4643
STATIC_ASSERT( a.cbegin() == a.cend() );
4744
}
4845

4946
int main()
5047
{
51-
// test1<int, 0>();
48+
test1<int, 0>();
5249
test1<int, 1>();
5350
test1<int, 7>();
5451

55-
// test2<int>();
52+
test2<int>();
5653
}
5754

5855
#endif

0 commit comments

Comments
 (0)