#include <assert.h>
Go to the source code of this file.
Macros | |
#define | BOOST_ASSERT(expr) assert(expr) |
#define | BOOST_ASSERT_MSG(expr, msg) assert((expr)&&(msg)) |
#define | BOOST_VERIFY(expr) BOOST_ASSERT(expr) |
#define | BOOST_VERIFY_MSG(expr, msg) BOOST_ASSERT_MSG(expr,msg) |
#define BOOST_ASSERT | ( | expr | ) | assert(expr) |
Definition at line 60 of file assert.hpp.
Definition at line 61 of file assert.hpp.
#define BOOST_VERIFY | ( | expr | ) | BOOST_ASSERT(expr) |
Definition at line 82 of file assert.hpp.
#define BOOST_VERIFY_MSG | ( | expr, | |
msg | |||
) | BOOST_ASSERT_MSG(expr,msg) |
Definition at line 83 of file assert.hpp.