File indexing completed on 2025-12-15 09:53:44
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #ifndef BOOST_INTRUSIVE_DETAIL_ASSERT_HPP
0014 #define BOOST_INTRUSIVE_DETAIL_ASSERT_HPP
0015
0016 #ifndef BOOST_CONFIG_HPP
0017 # include <boost/config.hpp>
0018 #endif
0019
0020 #if defined(BOOST_HAS_PRAGMA_ONCE)
0021 #pragma once
0022 #endif
0023
0024 #if !defined(BOOST_INTRUSIVE_INVARIANT_ASSERT)
0025 #include <boost/assert.hpp>
0026 #define BOOST_INTRUSIVE_INVARIANT_ASSERT BOOST_ASSERT
0027 #elif defined(BOOST_INTRUSIVE_INVARIANT_ASSERT_INCLUDE)
0028 #include BOOST_INTRUSIVE_INVARIANT_ASSERT_INCLUDE
0029 #endif
0030
0031 #if !defined(BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT)
0032 #include <boost/assert.hpp>
0033 #define BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT BOOST_ASSERT
0034 #elif defined(BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT_INCLUDE)
0035 #include BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT_INCLUDE
0036 #endif
0037
0038 #if !defined(BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT)
0039 #include <boost/assert.hpp>
0040 #define BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT BOOST_ASSERT
0041 #elif defined(BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT_INCLUDE)
0042 #include BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT_INCLUDE
0043 #endif
0044
0045 #endif