os/ossrv/ossrv_pub/boost_apis/boost/assert.hpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/assert.hpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,37 @@
     1.4 +//
     1.5 +//  boost/assert.hpp - BOOST_ASSERT(expr)
     1.6 +//
     1.7 +//  Copyright (c) 2001, 2002 Peter Dimov and Multi Media Ltd.
     1.8 +//
     1.9 +// Distributed under the Boost Software License, Version 1.0. (See
    1.10 +// accompanying file LICENSE_1_0.txt or copy at
    1.11 +// http://www.boost.org/LICENSE_1_0.txt)
    1.12 +//
    1.13 +//  Note: There are no include guards. This is intentional.
    1.14 +//
    1.15 +//  See http://www.boost.org/libs/utility/assert.html for documentation.
    1.16 +//
    1.17 +
    1.18 +#undef BOOST_ASSERT
    1.19 +
    1.20 +#if defined(BOOST_DISABLE_ASSERTS)
    1.21 +
    1.22 +# define BOOST_ASSERT(expr) ((void)0)
    1.23 +
    1.24 +#elif defined(BOOST_ENABLE_ASSERT_HANDLER)
    1.25 +
    1.26 +#include <boost/current_function.hpp>
    1.27 +
    1.28 +namespace boost
    1.29 +{
    1.30 +
    1.31 +void assertion_failed(char const * expr, char const * function, char const * file, long line); // user defined
    1.32 +
    1.33 +} // namespace boost
    1.34 +
    1.35 +#define BOOST_ASSERT(expr) ((expr)? ((void)0): ::boost::assertion_failed(#expr, BOOST_CURRENT_FUNCTION, __FILE__, __LINE__))
    1.36 +
    1.37 +#else
    1.38 +# include <assert.h> // .h to support old libraries w/o <cassert> - effect is the same
    1.39 +# define BOOST_ASSERT(expr) assert(expr)
    1.40 +#endif