mirror of
https://github.com/boostorg/container.git
synced 2025-07-31 13:07:17 +02:00
Delete test causing false positive warning in GCC 11
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user