...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
BOOST_CONTRACT_HEADER_ONLY — Automatically defined by this library when it is being used as a header-only library (not recommended).
// In header: <boost/contract/core/config.hpp>
BOOST_CONTRACT_HEADER_ONLY
This library will define this macro when users do not define BOOST_CONTRACT_DYN_LINK
(or BOOST_ALL_DYN_LINK
) and BOOST_CONTRACT_STATIC_LINK
(this macro is not a configuration macro and this library will generate a compile-time error if users try to define it directly). When used as a header-only library, this library code does not have to be compiled separately from user code, this library headers are simply included and compiled as part of the user program.
Warning | |
---|---|
This library is not guaranteed to always work correctly at run-time when this macro is defined (define |
See Also: