1234567891011121314151617181920 |
- #ifndef BOOST_CONTRACT_DETAIL_DEBUG_HPP_
- #define BOOST_CONTRACT_DETAIL_DEBUG_HPP_
- #ifdef BOOST_CONTRACT_DETAIL_NDEBUG
- #define BOOST_CONTRACT_DETAIL_DEBUG(cond)
- #else
- #include <boost/assert.hpp>
-
- #define BOOST_CONTRACT_DETAIL_DEBUG(cond) (BOOST_ASSERT(cond))
- #endif
- #endif
|