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@16
|
16 #if defined(_MSC_VER)&&(_MSC_VER>=1200)
|
Chris@16
|
17 #pragma once
|
Chris@16
|
18 #endif
|
Chris@16
|
19
|
Chris@16
|
20 #if !defined(BOOST_INTRUSIVE_INVARIANT_ASSERT)
|
Chris@16
|
21 #include <boost/assert.hpp>
|
Chris@16
|
22 #define BOOST_INTRUSIVE_INVARIANT_ASSERT BOOST_ASSERT
|
Chris@16
|
23 #elif defined(BOOST_INTRUSIVE_INVARIANT_ASSERT_INCLUDE)
|
Chris@16
|
24 #include BOOST_INTRUSIVE_INVARIANT_ASSERT_INCLUDE
|
Chris@16
|
25 #endif
|
Chris@16
|
26
|
Chris@16
|
27 #if !defined(BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT)
|
Chris@16
|
28 #include <boost/assert.hpp>
|
Chris@16
|
29 #define BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT BOOST_ASSERT
|
Chris@16
|
30 #elif defined(BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT_INCLUDE)
|
Chris@16
|
31 #include BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT_INCLUDE
|
Chris@16
|
32 #endif
|
Chris@16
|
33
|
Chris@16
|
34 #if !defined(BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT)
|
Chris@16
|
35 #include <boost/assert.hpp>
|
Chris@16
|
36 #define BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT BOOST_ASSERT
|
Chris@16
|
37 #elif defined(BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT_INCLUDE)
|
Chris@16
|
38 #include BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT_INCLUDE
|
Chris@16
|
39 #endif
|
Chris@16
|
40
|
Chris@16
|
41 #endif //BOOST_INTRUSIVE_DETAIL_ASSERT_HPP
|