Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:39:07

0001 // Boost Lambda Library - lambda_config.hpp ------------------------------
0002 
0003 // Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi)
0004 //
0005 // Distributed under the Boost Software License, Version 1.0. (See
0006 // accompanying file LICENSE_1_0.txt or copy at
0007 // http://www.boost.org/LICENSE_1_0.txt)
0008 //
0009 // For more information, see www.boost.org
0010 
0011 // ---------------------------------------------------------------
0012 
0013 #ifndef BOOST_LAMBDA_LAMBDA_CONFIG_HPP
0014 #define BOOST_LAMBDA_LAMBDA_CONFIG_HPP
0015 
0016 // add to boost/config.hpp
0017 // for now
0018 
0019 
0020 # if defined __GNUC__
0021 #   if (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) 
0022 #     define BOOST_REF_TO_FUNC_CONFLICTS_WITH_REF_TO_T
0023 #     define BOOST_LAMBDA_INCORRECT_BIND_OVERLOADING
0024 #   endif
0025 # endif  // __GNUC__
0026  
0027 
0028 #if defined __KCC
0029 
0030 #define BOOST_NO_FDECL_TEMPLATES_AS_TEMPLATE_TEMPLATE_PARAMS
0031 
0032 #endif  // __KCC
0033 
0034 #endif
0035 
0036 
0037 
0038 
0039 
0040 
0041