mirror of
https://github.com/boostorg/array.git
synced 2026-01-25 08:32:24 +01: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