1234567891011121314151617181920212223242526272829 |
- #ifndef BOOST_MPL_LAMBDA_HPP_INCLUDED
- #define BOOST_MPL_LAMBDA_HPP_INCLUDED
- #include <boost/mpl/lambda_fwd.hpp>
- #include <boost/mpl/bind.hpp>
- #include <boost/mpl/aux_/config/lambda.hpp>
- #if !defined(BOOST_MPL_CFG_NO_FULL_LAMBDA_SUPPORT)
- # include <boost/mpl/aux_/full_lambda.hpp>
- #else
- # include <boost/mpl/aux_/lambda_no_ctps.hpp>
- # include <boost/mpl/aux_/lambda_support.hpp>
- # define BOOST_MPL_CFG_NO_IMPLICIT_METAFUNCTIONS
- #endif
- #endif
|