annotate DEPENDENCIES/generic/include/boost/mpl/aux_/preprocessed/bcc/and.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
Chris@16 2 // Copyright Aleksey Gurtovoy 2000-2004
Chris@16 3 //
Chris@16 4 // Distributed under the Boost Software License, Version 1.0.
Chris@16 5 // (See 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
Chris@16 9 // *Preprocessed* version of the main "and.hpp" header
Chris@16 10 // -- DO NOT modify by hand!
Chris@16 11
Chris@16 12 namespace boost { namespace mpl {
Chris@16 13
Chris@16 14 namespace aux {
Chris@16 15
Chris@16 16 template< bool C_, typename T1, typename T2, typename T3, typename T4 >
Chris@16 17 struct and_impl
Chris@16 18 : false_
Chris@16 19 {
Chris@16 20 };
Chris@16 21
Chris@16 22 template< typename T1, typename T2, typename T3, typename T4 >
Chris@16 23 struct and_impl< true,T1,T2,T3,T4 >
Chris@16 24 : and_impl<
Chris@16 25 BOOST_MPL_AUX_NESTED_TYPE_WKND(T1)::value
Chris@16 26 , T2, T3, T4
Chris@16 27 , true_
Chris@16 28 >
Chris@16 29 {
Chris@16 30 };
Chris@16 31
Chris@16 32 template<>
Chris@16 33 struct and_impl<
Chris@16 34 true
Chris@16 35 , true_, true_, true_, true_
Chris@16 36 >
Chris@16 37 : true_
Chris@16 38 {
Chris@16 39 };
Chris@16 40
Chris@16 41 } // namespace aux
Chris@16 42
Chris@16 43 template<
Chris@16 44 typename BOOST_MPL_AUX_NA_PARAM(T1)
Chris@16 45 , typename BOOST_MPL_AUX_NA_PARAM(T2)
Chris@16 46 , typename T3 = true_, typename T4 = true_, typename T5 = true_
Chris@16 47 >
Chris@16 48 struct and_
Chris@16 49
Chris@16 50 : aux::and_impl<
Chris@16 51 BOOST_MPL_AUX_NESTED_TYPE_WKND(T1)::value
Chris@16 52 , T2, T3, T4, T5
Chris@16 53 >
Chris@16 54
Chris@16 55 {
Chris@16 56 BOOST_MPL_AUX_LAMBDA_SUPPORT(
Chris@16 57 5
Chris@16 58 , and_
Chris@16 59 , ( T1, T2, T3, T4, T5)
Chris@16 60 )
Chris@16 61 };
Chris@16 62
Chris@16 63 BOOST_MPL_AUX_NA_SPEC2(
Chris@16 64 2
Chris@16 65 , 5
Chris@16 66 , and_
Chris@16 67 )
Chris@16 68
Chris@16 69 }}