Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/lambda/detail/lambda_config.hpp @ 125:34e428693f5d vext
Vext -> Repoint
author | Chris Cannam |
---|---|
date | Thu, 14 Jun 2018 11:15:39 +0100 |
parents | 2665513ce2d3 |
children |
rev | line source |
---|---|
Chris@16 | 1 // Boost Lambda Library - lambda_config.hpp ------------------------------ |
Chris@16 | 2 |
Chris@16 | 3 // Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi) |
Chris@16 | 4 // |
Chris@16 | 5 // Distributed under the Boost Software License, Version 1.0. (See |
Chris@16 | 6 // accompanying file LICENSE_1_0.txt or copy at |
Chris@16 | 7 // http://www.boost.org/LICENSE_1_0.txt) |
Chris@16 | 8 // |
Chris@16 | 9 // For more information, see www.boost.org |
Chris@16 | 10 |
Chris@16 | 11 // --------------------------------------------------------------- |
Chris@16 | 12 |
Chris@16 | 13 #ifndef BOOST_LAMBDA_LAMBDA_CONFIG_HPP |
Chris@16 | 14 #define BOOST_LAMBDA_LAMBDA_CONFIG_HPP |
Chris@16 | 15 |
Chris@16 | 16 // add to boost/config.hpp |
Chris@16 | 17 // for now |
Chris@16 | 18 |
Chris@16 | 19 |
Chris@16 | 20 # if defined __GNUC__ |
Chris@16 | 21 # if (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) |
Chris@16 | 22 # define BOOST_REF_TO_FUNC_CONFLICTS_WITH_REF_TO_T |
Chris@16 | 23 # define BOOST_LAMBDA_INCORRECT_BIND_OVERLOADING |
Chris@16 | 24 # endif |
Chris@16 | 25 # if (__GNUC__ == 2 && __GNUC_MINOR__ <= 97) |
Chris@16 | 26 # define BOOST_NO_TEMPLATED_STREAMS |
Chris@16 | 27 # define BOOST_LAMBDA_INCORRECT_BIND_OVERLOADING |
Chris@16 | 28 # endif |
Chris@16 | 29 # if (__GNUC__ == 2 && __GNUC_MINOR__ <= 95) |
Chris@16 | 30 # define BOOST_LAMBDA_FAILS_IN_TEMPLATE_KEYWORD_AFTER_SCOPE_OPER |
Chris@16 | 31 # endif |
Chris@16 | 32 # endif // __GNUC__ |
Chris@16 | 33 |
Chris@16 | 34 |
Chris@16 | 35 #if defined __KCC |
Chris@16 | 36 |
Chris@16 | 37 #define BOOST_NO_FDECL_TEMPLATES_AS_TEMPLATE_TEMPLATE_PARAMS |
Chris@16 | 38 |
Chris@16 | 39 #endif // __KCC |
Chris@16 | 40 |
Chris@16 | 41 #endif |
Chris@16 | 42 |
Chris@16 | 43 |
Chris@16 | 44 |
Chris@16 | 45 |
Chris@16 | 46 |
Chris@16 | 47 |
Chris@16 | 48 |