2007-06-23 13:01:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
2012-07-12 07:15:40 +00:00
|
|
|
// (C) Copyright Ion Gaztanaga 2006-2012
|
2007-06-23 13:01:38 +00:00
|
|
|
//
|
|
|
|
|
// Distributed under 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)
|
|
|
|
|
//
|
|
|
|
|
// See http://www.boost.org/libs/intrusive for documentation.
|
|
|
|
|
//
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
#ifndef BOOST_INTRUSIVE_DETAIL_ASSERT_HPP
|
2012-05-20 09:57:59 +00:00
|
|
|
#define BOOST_INTRUSIVE_DETAIL_ASSERT_HPP
|
2007-06-23 13:01:38 +00:00
|
|
|
|
|
|
|
|
#if defined(_MSC_VER)&&(_MSC_VER>=1200)
|
|
|
|
|
#pragma once
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if !defined(BOOST_INTRUSIVE_INVARIANT_ASSERT)
|
2008-10-11 13:14:49 +00:00
|
|
|
#include <boost/assert.hpp>
|
|
|
|
|
#define BOOST_INTRUSIVE_INVARIANT_ASSERT BOOST_ASSERT
|
|
|
|
|
#elif defined(BOOST_INTRUSIVE_INVARIANT_ASSERT_INCLUDE)
|
|
|
|
|
#include BOOST_INTRUSIVE_INVARIANT_ASSERT_INCLUDE
|
2007-06-23 13:01:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
2007-07-22 14:08:34 +00:00
|
|
|
#if !defined(BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT)
|
2008-10-11 13:14:49 +00:00
|
|
|
#include <boost/assert.hpp>
|
|
|
|
|
#define BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT BOOST_ASSERT
|
|
|
|
|
#elif defined(BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT_INCLUDE)
|
|
|
|
|
#include BOOST_INTRUSIVE_SAFE_HOOK_DEFAULT_ASSERT_INCLUDE
|
2007-06-23 13:01:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
2007-07-22 14:08:34 +00:00
|
|
|
#if !defined(BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT)
|
2008-10-11 13:14:49 +00:00
|
|
|
#include <boost/assert.hpp>
|
|
|
|
|
#define BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT BOOST_ASSERT
|
|
|
|
|
#elif defined(BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT_INCLUDE)
|
|
|
|
|
#include BOOST_INTRUSIVE_SAFE_HOOK_DESTRUCTOR_ASSERT_INCLUDE
|
2007-06-23 13:01:38 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif //BOOST_INTRUSIVE_DETAIL_ASSERT_HPP
|