forked from boostorg/container
- Replaced default standard exception classes with Boost.Container own classes, reducing considerably the included files overhead
This commit is contained in:
@@ -1844,7 +1844,7 @@ template <class Devector> void test_at()
|
||||
a.at(0) = T(100);
|
||||
BOOST_TEST(a.at(0) == 100);
|
||||
|
||||
BOOST_TEST_THROWS((void)a.at(3), std::out_of_range);
|
||||
BOOST_TEST_THROWS((void)a.at(3), out_of_range_t);
|
||||
}
|
||||
|
||||
{ // const at
|
||||
@@ -1853,7 +1853,7 @@ template <class Devector> void test_at()
|
||||
|
||||
BOOST_TEST(a.at(0) == 1);
|
||||
|
||||
BOOST_TEST_THROWS((void)a.at(3), std::out_of_range);
|
||||
BOOST_TEST_THROWS((void)a.at(3), out_of_range_t);
|
||||
}
|
||||
#endif //#ifndef BOOST_NO_EXCEPTIONS
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user