mirror of
https://github.com/boostorg/array.git
synced 2025-07-31 13:17:21 +02:00
Re-enable failing tests
This commit is contained in:
@ -39,20 +39,17 @@ template<class T> void test2()
|
|||||||
{
|
{
|
||||||
constexpr boost::array<T, 0> a = {};
|
constexpr boost::array<T, 0> a = {};
|
||||||
|
|
||||||
// iterator access is not constexpr for boost::array<T, 0>
|
|
||||||
// it is for std::array<T, 0>, though, so we should change it
|
|
||||||
|
|
||||||
STATIC_ASSERT( a.begin() == a.end() );
|
STATIC_ASSERT( a.begin() == a.end() );
|
||||||
STATIC_ASSERT( a.cbegin() == a.cend() );
|
STATIC_ASSERT( a.cbegin() == a.cend() );
|
||||||
}
|
}
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
// test1<int, 0>();
|
test1<int, 0>();
|
||||||
test1<int, 1>();
|
test1<int, 1>();
|
||||||
test1<int, 7>();
|
test1<int, 7>();
|
||||||
|
|
||||||
// test2<int>();
|
test2<int>();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user