Delete test causing false positive warning in GCC 11

This commit is contained in:
Ion Gaztañaga
2021-12-29 17:30:53 +01:00
parent ec73bd71e1
commit 6e2032717c

View File

@ -425,7 +425,6 @@ void test_capacity_0_nd()
BOOST_TEST_THROWS(s.resize(5u, T(0)), bad_alloc_t);
BOOST_TEST_THROWS(s.push_back(T(0)), bad_alloc_t);
BOOST_TEST_THROWS(s.insert(s.end(), T(0)), bad_alloc_t);
BOOST_TEST_THROWS(s.insert(s.end(), 5u, T(0)), bad_alloc_t);
BOOST_TEST_THROWS(s.insert(s.end(), v.begin(), v.end()), bad_alloc_t);
BOOST_TEST_THROWS(s.assign(v.begin(), v.end()), bad_alloc_t);
BOOST_TEST_THROWS(s.assign(5u, T(0)), bad_alloc_t);