Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This is an older version of Boost and was released in 2022. The current version is 1.89.0.
BOOST_CONTRACT_NO_EXIT_INVARIANTS — If defined, this library does not check class invariants at exit (undefined by default).
// In header: <boost/contract/core/config.hpp>
BOOST_CONTRACT_NO_EXIT_INVARIANTSIf this macro is defined, this library internal code is also optimized to reduce compile-time (not just run-time) overhead associated with checking class invariants at exit. In addition, users can manually program #ifndef statements in their code using this macro to completely disable compilation of exit class invariants or use the macros defined in boost/contract_macro.hpp (recommended only for applications where it is truly necessary to completely remove contract code compilation from production code).
This macro is automatically defined when BOOST_CONTRACT_NO_INVARIANTS is defined.
See Also:
Class Invariants, Disable Contract Checking, Disable Contract Compilation