sl@0: // sl@0: // boost/assert.hpp - BOOST_ASSERT(expr) sl@0: // sl@0: // Copyright (c) 2001, 2002 Peter Dimov and Multi Media Ltd. sl@0: // sl@0: // Distributed under the Boost Software License, Version 1.0. (See sl@0: // accompanying file LICENSE_1_0.txt or copy at sl@0: // http://www.boost.org/LICENSE_1_0.txt) sl@0: // sl@0: // Note: There are no include guards. This is intentional. sl@0: // sl@0: // See http://www.boost.org/libs/utility/assert.html for documentation. sl@0: // sl@0: sl@0: #undef BOOST_ASSERT sl@0: sl@0: #if defined(BOOST_DISABLE_ASSERTS) sl@0: sl@0: # define BOOST_ASSERT(expr) ((void)0) sl@0: sl@0: #elif defined(BOOST_ENABLE_ASSERT_HANDLER) sl@0: sl@0: #include sl@0: sl@0: namespace boost sl@0: { sl@0: sl@0: void assertion_failed(char const * expr, char const * function, char const * file, long line); // user defined sl@0: sl@0: } // namespace boost sl@0: sl@0: #define BOOST_ASSERT(expr) ((expr)? ((void)0): ::boost::assertion_failed(#expr, BOOST_CURRENT_FUNCTION, __FILE__, __LINE__)) sl@0: sl@0: #else sl@0: # include // .h to support old libraries w/o - effect is the same sl@0: # define BOOST_ASSERT(expr) assert(expr) sl@0: #endif