- Replaced default standard exception classes with Boost.Container own classes, reducing considerably the included files overhead

This commit is contained in:
Ion Gaztañaga
2020-12-30 15:07:32 +01:00
parent b17dabf47a
commit d5a830434e
8 changed files with 181 additions and 42 deletions
+2 -2
View File
@@ -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
}