Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-19 09:34:15

0001 
0002 // Copyright (C) 2009-2012 Lorenzo Caminiti
0003 // Distributed under the Boost Software License, Version 1.0
0004 // (see accompanying file LICENSE_1_0.txt or a copy at
0005 // http://www.boost.org/LICENSE_1_0.txt)
0006 // Home at http://www.boost.org/libs/local_function
0007 
0008 #ifndef BOOST_LOCAL_FUNCTION_AUX_PP_DECL_TRAITS_NIL_HPP_
0009 #define BOOST_LOCAL_FUNCTION_AUX_PP_DECL_TRAITS_NIL_HPP_
0010 
0011 #include <boost/preprocessor/facilities/empty.hpp>
0012 
0013 #define BOOST_LOCAL_FUNCTION_AUX_PP_DECL_TRAITS_NIL \
0014     ( \
0015         /* returns: list of `return result_type` */ \
0016         BOOST_PP_NIL /* nil list */ \
0017     , \
0018         /* params: list of 2-tuples (param_decl, param_default) */ \
0019         BOOST_PP_NIL /* nil list */ \
0020     , \
0021         /* const-binds: list of 2-tuple `(var_untyped, var_typed)` */ \
0022         BOOST_PP_NIL /* nil list */ \
0023     , \
0024         /* const-bind this: list of 1-tuple `(type)` */ \
0025         BOOST_PP_NIL \
0026       /* number of const-bind `this` */ \
0027     , \
0028         /* binds: list of 2-tuple `(var_untyped, var_typed)` */ \
0029         BOOST_PP_NIL /* nil list */ \
0030     , \
0031         /* bind this: list of 1-type `(type)` */ \
0032         BOOST_PP_NIL \
0033     , \
0034         /* error: `[ERROR_message_text] EMPTY` */ \
0035         BOOST_PP_EMPTY /* no error */ \
0036     )
0037 
0038 #endif // #include guard
0039