Chris@16: ///////////////////////////////////////////////////////////////////////////// Chris@16: // Chris@16: // (C) Copyright Ion Gaztanaga 2006-2013 Chris@16: // Chris@16: // Distributed under the Boost Software License, Version 1.0. Chris@16: // (See accompanying file LICENSE_1_0.txt or copy at Chris@16: // http://www.boost.org/LICENSE_1_0.txt) Chris@16: // Chris@16: // See http://www.boost.org/libs/intrusive for documentation. Chris@16: // Chris@16: ///////////////////////////////////////////////////////////////////////////// Chris@16: Chris@16: #ifndef BOOST_INTRUSIVE_DETAIL_ASSERT_HPP Chris@16: #define BOOST_INTRUSIVE_DETAIL_ASSERT_HPP Chris@16: Chris@101: #ifndef BOOST_CONFIG_HPP Chris@101: # include Chris@101: #endif Chris@101: Chris@101: #if defined(BOOST_HAS_PRAGMA_ONCE) Chris@16: #pragma once Chris@16: #endif Chris@16: Chris@16: #if !defined(BOOST_INTRUSIVE_INVARIANT_ASSERT) Chris@16: #include Chris@16: #define BOOST_INTRUSIVE_INVARIANT_ASSERT BOOST_ASSERT Chris@16: #elif defined(BOOST_INTRUSIVE_INVARIANT_ASSERT_INCLUDE) Chris@16: #include BOOST_INTRUSIVE_INVARIANT_ASSERT_INCLUDE Chris@16: #endif Chris@16: Chris@16: #if !defined(BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT) Chris@16: #include Chris@16: #define BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT BOOST_ASSERT Chris@16: #elif defined(BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT_INCLUDE) Chris@16: #include BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT_INCLUDE Chris@16: #endif Chris@16: Chris@16: #if !defined(BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT) Chris@16: #include Chris@16: #define BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT BOOST_ASSERT Chris@16: #elif defined(BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT_INCLUDE) Chris@16: #include BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT_INCLUDE Chris@16: #endif Chris@16: Chris@16: #endif //BOOST_INTRUSIVE_DETAIL_ASSERT_HPP