Chris@16
|
1 /////////////////////////////////////////////////////////////////////////////
|
Chris@16
|
2 //
|
Chris@16
|
3 // (C) Copyright Ion Gaztanaga 2006-2013
|
Chris@16
|
4 //
|
Chris@16
|
5 // Distributed under the Boost Software License, Version 1.0.
|
Chris@16
|
6 // (See accompanying file LICENSE_1_0.txt or copy at
|
Chris@16
|
7 // http://www.boost.org/LICENSE_1_0.txt)
|
Chris@16
|
8 //
|
Chris@16
|
9 // See http://www.boost.org/libs/intrusive for documentation.
|
Chris@16
|
10 //
|
Chris@16
|
11 /////////////////////////////////////////////////////////////////////////////
|
Chris@16
|
12
|
Chris@16
|
13 #ifndef BOOST_INTRUSIVE_DETAIL_ASSERT_HPP
|
Chris@16
|
14 #define BOOST_INTRUSIVE_DETAIL_ASSERT_HPP
|
Chris@16
|
15
|
Chris@101
|
16 #ifndef BOOST_CONFIG_HPP
|
Chris@101
|
17 # include <boost/config.hpp>
|
Chris@101
|
18 #endif
|
Chris@101
|
19
|
Chris@101
|
20 #if defined(BOOST_HAS_PRAGMA_ONCE)
|
Chris@16
|
21 #pragma once
|
Chris@16
|
22 #endif
|
Chris@16
|
23
|
Chris@16
|
24 #if !defined(BOOST_INTRUSIVE_INVARIANT_ASSERT)
|
Chris@16
|
25 #include <boost/assert.hpp>
|
Chris@16
|
26 #define BOOST_INTRUSIVE_INVARIANT_ASSERT BOOST_ASSERT
|
Chris@16
|
27 #elif defined(BOOST_INTRUSIVE_INVARIANT_ASSERT_INCLUDE)
|
Chris@16
|
28 #include BOOST_INTRUSIVE_INVARIANT_ASSERT_INCLUDE
|
Chris@16
|
29 #endif
|
Chris@16
|
30
|
Chris@16
|
31 #if !defined(BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT)
|
Chris@16
|
32 #include <boost/assert.hpp>
|
Chris@16
|
33 #define BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT BOOST_ASSERT
|
Chris@16
|
34 #elif defined(BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT_INCLUDE)
|
Chris@16
|
35 #include BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT_INCLUDE
|
Chris@16
|
36 #endif
|
Chris@16
|
37
|
Chris@16
|
38 #if !defined(BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT)
|
Chris@16
|
39 #include <boost/assert.hpp>
|
Chris@16
|
40 #define BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT BOOST_ASSERT
|
Chris@16
|
41 #elif defined(BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT_INCLUDE)
|
Chris@16
|
42 #include BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT_INCLUDE
|
Chris@16
|
43 #endif
|
Chris@16
|
44
|
Chris@16
|
45 #endif //BOOST_INTRUSIVE_DETAIL_ASSERT_HPP
|