Lines Matching refs:included
28 is included, `BOOST_ASSERT(expr)` expands to `((void)0)`, regardless of whether
33 is included, `BOOST_ASSERT(expr)` expands to
57 is included, `BOOST_ASSERT(expr)` expands to `((void)0)` when `NDEBUG` is
61 can be included multiple times in a single translation unit. `BOOST_ASSERT`
72 is included, `BOOST_ASSERT_MSG(expr,msg)` expands to `((void)0)`, regardless of whether
76 is included, `BOOST_ASSERT_MSG(expr,msg)` expands to
98 is included, `BOOST_ASSERT_MSG(expr)` expands to `((void)0)` when `NDEBUG` is
102 can be included multiple times in a single translation unit. `BOOST_ASSERT_MSG`
114 is included, `BOOST_VERIFY(expr)` expands to `\((void)(expr))`.
117 is included, `BOOST_VERIFY(expr)` expands to `BOOST_ASSERT(expr)`.
127 is included, `BOOST_VERIFY_MSG(expr,msg)` expands to `\((void)(expr))`.
130 is included, `BOOST_VERIFY_MSG(expr,msg)` expands to `BOOST_ASSERT_MSG(expr,msg)`.