annotate DEPENDENCIES/generic/include/boost/lambda/lambda.hpp @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents 2665513ce2d3
children
rev   line source
Chris@16 1 // -- lambda.hpp -- Boost Lambda Library -----------------------------------
Chris@16 2 // Copyright (C) 1999, 2000 Jaakko Jarvi (jaakko.jarvi@cs.utu.fi)
Chris@16 3 //
Chris@16 4 // Distributed under the Boost Software License, Version 1.0. (See
Chris@16 5 // accompanying file LICENSE_1_0.txt or copy at
Chris@16 6 // http://www.boost.org/LICENSE_1_0.txt)
Chris@16 7 //
Chris@16 8 // For more information, see http://lambda.cs.utu.fi
Chris@16 9
Chris@16 10 #ifndef BOOST_LAMBDA_LAMBDA_HPP
Chris@16 11 #define BOOST_LAMBDA_LAMBDA_HPP
Chris@16 12
Chris@16 13
Chris@16 14 #include "boost/lambda/core.hpp"
Chris@16 15
Chris@16 16 #ifdef BOOST_NO_FDECL_TEMPLATES_AS_TEMPLATE_TEMPLATE_PARAMS
Chris@16 17 #include <istream>
Chris@16 18 #include <ostream>
Chris@16 19 #endif
Chris@16 20
Chris@16 21 #include "boost/lambda/detail/operator_actions.hpp"
Chris@16 22 #include "boost/lambda/detail/operator_lambda_func_base.hpp"
Chris@16 23 #include "boost/lambda/detail/operator_return_type_traits.hpp"
Chris@16 24
Chris@16 25
Chris@16 26 #include "boost/lambda/detail/operators.hpp"
Chris@16 27
Chris@16 28 #ifndef BOOST_LAMBDA_FAILS_IN_TEMPLATE_KEYWORD_AFTER_SCOPE_OPER
Chris@16 29 // sorry, member ptr does not work with gcc2.95
Chris@16 30 #include "boost/lambda/detail/member_ptr.hpp"
Chris@16 31 #endif
Chris@16 32
Chris@16 33
Chris@16 34 #endif