sl@0
|
1 |
//
|
sl@0
|
2 |
// boost/assert.hpp - BOOST_ASSERT(expr)
|
sl@0
|
3 |
//
|
sl@0
|
4 |
// Copyright (c) 2001, 2002 Peter Dimov and Multi Media Ltd.
|
sl@0
|
5 |
//
|
sl@0
|
6 |
// Distributed under the Boost Software License, Version 1.0. (See
|
sl@0
|
7 |
// accompanying file LICENSE_1_0.txt or copy at
|
sl@0
|
8 |
// http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
9 |
//
|
sl@0
|
10 |
// Note: There are no include guards. This is intentional.
|
sl@0
|
11 |
//
|
sl@0
|
12 |
// See http://www.boost.org/libs/utility/assert.html for documentation.
|
sl@0
|
13 |
//
|
sl@0
|
14 |
|
sl@0
|
15 |
#undef BOOST_ASSERT
|
sl@0
|
16 |
|
sl@0
|
17 |
#if defined(BOOST_DISABLE_ASSERTS)
|
sl@0
|
18 |
|
sl@0
|
19 |
# define BOOST_ASSERT(expr) ((void)0)
|
sl@0
|
20 |
|
sl@0
|
21 |
#elif defined(BOOST_ENABLE_ASSERT_HANDLER)
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <boost/current_function.hpp>
|
sl@0
|
24 |
|
sl@0
|
25 |
namespace boost
|
sl@0
|
26 |
{
|
sl@0
|
27 |
|
sl@0
|
28 |
void assertion_failed(char const * expr, char const * function, char const * file, long line); // user defined
|
sl@0
|
29 |
|
sl@0
|
30 |
} // namespace boost
|
sl@0
|
31 |
|
sl@0
|
32 |
#define BOOST_ASSERT(expr) ((expr)? ((void)0): ::boost::assertion_failed(#expr, BOOST_CURRENT_FUNCTION, __FILE__, __LINE__))
|
sl@0
|
33 |
|
sl@0
|
34 |
#else
|
sl@0
|
35 |
# include <assert.h> // .h to support old libraries w/o <cassert> - effect is the same
|
sl@0
|
36 |
# define BOOST_ASSERT(expr) assert(expr)
|
sl@0
|
37 |
#endif
|