12345678910111213141516171819 |
- #ifndef BOOST_CONTRACT_DETAIL_NOOP_HPP_
- #define BOOST_CONTRACT_DETAIL_NOOP_HPP_
- #define BOOST_CONTRACT_DETAIL_NOOP ((void)0)
- #define BOOST_CONTRACT_DETAIL_NOEVAL(cond) \
- (true || (cond) ? BOOST_CONTRACT_DETAIL_NOOP : BOOST_CONTRACT_DETAIL_NOOP)
- #endif
|