/usr/include/boost/ptr_container/detail
NameSizeModeActions
associative_ptr_container.hpp142960644editdlrm
default_deleter.hpp21370644editdlrm
is_convertible.hpp24780644editdlrm
map_iterator.hpp37350644editdlrm
meta_functions.hpp13780644editdlrm
move.hpp11000644editdlrm
ptr_container_disable_deprecated.hpp10960644editdlrm
reversible_ptr_container.hpp306720644editdlrm
scoped_deleter.hpp36140644editdlrm
serialize_ptr_map_adapter.hpp34870644editdlrm
serialize_reversible_cont.hpp32950644editdlrm
serialize_xml_names.hpp8760644editdlrm
static_move_ptr.hpp59490644editdlrm
throw_exception.hpp8540644editdlrm
void_ptr_iterator.hpp77760644editdlrm
Edit: /usr/include/boost/ptr_container/detail/throw_exception.hpp (854B)
// // Boost.Pointer Container // // Copyright Thorsten Ottosen 2006. Use, modification and // distribution is subject to the Boost Software License, Version // 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // For more information, see http://www.boost.org/libs/ptr_container/ // #ifndef BOOST_PTR_CONTAINER_DETAIL_THROW_EXCEPTION #define BOOST_PTR_CONTAINER_DETAIL_THROW_EXCEPTION #include #include #ifdef BOOST_NO_EXCEPTIONS #define BOOST_PTR_CONTAINER_NO_EXCEPTIONS #endif #ifdef BOOST_PTR_CONTAINER_NO_EXCEPTIONS #define BOOST_PTR_CONTAINER_THROW_EXCEPTION( If, Ex, Msg ) BOOST_ASSERT( !(If) && Msg ) #else #define BOOST_PTR_CONTAINER_THROW_EXCEPTION( If, Ex, Msg ) if( (If) ) throw Ex ( Msg ) #endif // BOOST_PTR_CONTAINER_NO_EXCEPTIONS #endif