mirror of
https://github.com/boostorg/array.git
synced 2025-07-31 05:07:19 +02:00
Enable warnings=extra, warnings-as-errors=on in test suite
This commit is contained in:
@ -15,6 +15,8 @@ template<class T, std::size_t N> void test1()
|
||||
BOOST_TEST_EQ( a.size(), N );
|
||||
BOOST_TEST_EQ( a.empty(), N == 0 );
|
||||
BOOST_TEST_EQ( a.max_size(), N );
|
||||
|
||||
(void)a; // msvc-12.0
|
||||
}
|
||||
|
||||
{
|
||||
@ -23,6 +25,8 @@ template<class T, std::size_t N> void test1()
|
||||
BOOST_TEST_EQ( a.size(), N );
|
||||
BOOST_TEST_EQ( a.empty(), N == 0 );
|
||||
BOOST_TEST_EQ( a.max_size(), N );
|
||||
|
||||
(void)a; // msvc-12.0
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user