123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- #ifndef BOOST_LOCAL_FUNCTION_CONFIG_HPP_
- #define BOOST_LOCAL_FUNCTION_CONFIG_HPP_
- #ifndef DOXYGEN
- #include <boost/config.hpp>
- #ifndef BOOST_LOCAL_FUNCTION_CONFIG_FUNCTION_ARITY_MAX
- # define BOOST_LOCAL_FUNCTION_CONFIG_FUNCTION_ARITY_MAX 5
- #endif
- #ifndef BOOST_LOCAL_FUNCTION_CONFIG_BIND_MAX
- # define BOOST_LOCAL_FUNCTION_CONFIG_BIND_MAX 10
- #endif
- #ifndef BOOST_LOCAL_FUNCTION_CONFIG_LOCALS_AS_TPARAMS
- # ifdef BOOST_NO_CXX11_LOCAL_CLASS_TEMPLATE_PARAMETERS
- # define BOOST_LOCAL_FUNCTION_CONFIG_LOCALS_AS_TPARAMS 0
- # else
- # define BOOST_LOCAL_FUNCTION_CONFIG_LOCALS_AS_TPARAMS 1
- # endif
- #elif BOOST_LOCAL_FUNCTION_CONFIG_LOCALS_AS_TPARAMS
- # undef BOOST_LOCAL_FUNCTION_CONFIG_LOCALS_AS_TPARAMS
- # define BOOST_LOCAL_FUNCTION_CONFIG_LOCALS_AS_TPARAMS 1
- #endif
- #else
- #define BOOST_LOCAL_FUNCTION_CONFIG_ARITY_MAX
- #define BOOST_LOCAL_FUNCTION_CONFIG_BIND_MAX
- #define BOOST_LOCAL_FUNCTION_CONFIG_LOCALS_AS_TPARAMS
- #endif
- #endif
|