#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 56 of file assert.hpp.
| #define BOOST_ASSERT_MSG | ( | expr, | |
| msg | |||
| ) | assert((expr)&&(msg)) |
Definition at line 57 of file assert.hpp.
| #define BOOST_VERIFY | ( | expr | ) | BOOST_ASSERT(expr) |
Definition at line 75 of file assert.hpp.
| #define BOOST_VERIFY_MSG | ( | expr, | |
| msg | |||
| ) | BOOST_ASSERT_MSG(expr,msg) |
Definition at line 76 of file assert.hpp.