File indexing completed on 2025-01-30 09:48:04
0001
0002 #ifndef BOOST_MPL_LAMBDA_FWD_HPP_INCLUDED
0003 #define BOOST_MPL_LAMBDA_FWD_HPP_INCLUDED
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #include <boost/mpl/void_fwd.hpp>
0018 #include <boost/mpl/aux_/na.hpp>
0019 #include <boost/mpl/aux_/config/lambda.hpp>
0020
0021 #if !defined(BOOST_MPL_CFG_NO_FULL_LAMBDA_SUPPORT)
0022
0023 # include <boost/mpl/int.hpp>
0024 # include <boost/mpl/aux_/lambda_arity_param.hpp>
0025 # include <boost/mpl/aux_/template_arity_fwd.hpp>
0026
0027 namespace boost { namespace mpl {
0028
0029 template<
0030 typename T = na
0031 , typename Tag = void_
0032 BOOST_MPL_AUX_LAMBDA_ARITY_PARAM(
0033 typename Arity = int_< aux::template_arity<T>::value >
0034 )
0035 >
0036 struct lambda;
0037
0038 }}
0039
0040 #else
0041
0042 # include <boost/mpl/bool.hpp>
0043
0044 namespace boost { namespace mpl {
0045
0046 template<
0047 typename T = na
0048 , typename Tag = void_
0049 , typename Protect = true_
0050 >
0051 struct lambda;
0052
0053 }}
0054
0055 #endif
0056
0057 #endif