assert.hpp 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // boost/assert.hpp - BOOST_ASSERT(expr)
  3. //
  4. // Copyright (c) 2001, 2002 Peter Dimov and Multi Media Ltd.
  5. //
  6. // Permission to copy, use, modify, sell and distribute this software
  7. // is granted provided this copyright notice appears in all copies.
  8. // This software is provided "as is" without express or implied
  9. // warranty, and with no claim as to its suitability for any purpose.
  10. //
  11. // Note: There are no include guards. This is intentional.
  12. //
  13. // See http://www.boost.org/libs/utility/assert.html for documentation.
  14. //
  15. #undef BOOST_ASSERT
  16. #if defined(BOOST_DISABLE_ASSERTS)
  17. # define BOOST_ASSERT(expr) ((void)0)
  18. #elif defined(BOOST_ENABLE_ASSERT_HANDLER)
  19. #include <boost/current_function.hpp>
  20. namespace boost
  21. {
  22. void assertion_failed(char const * expr, char const * function, char const * file, long line); // user defined
  23. } // namespace boost
  24. #define BOOST_ASSERT(expr) ((expr)? ((void)0): ::boost::assertion_failed(#expr, BOOST_CURRENT_FUNCTION, __FILE__, __LINE__))
  25. #else
  26. # include <assert.h>
  27. # define BOOST_ASSERT(expr) assert(expr)
  28. #endif