...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_MAX_ARGS — Maximum number of arguments for public function overrides on compilers that do not support variadic templates (default to 10
).
// In header: <boost/contract/core/config.hpp>
BOOST_CONTRACT_MAX_ARGS
On compilers that do not support variadic templates, this macro is defined to the maximum number of arguments that public function overrides can have and pass to boost::contract::public_function
(users can redefine this macro to a different value). On compilers that support variadic templates, this macro has no effect.
Note | |
---|---|
Regardless of the value of this macro and of compiler support for variadic templates, there is an intrinsic limit of about 18 arguments for public function overrides (because of similar limits in Boost.MPL and Boost.FunctionTypes internally used by this library). |
See Also: