annotate DEPENDENCIES/generic/include/boost/mpl/aux_/preprocessed/mwcw/quote.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 "boost/mpl/quote.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 template< typename T, bool has_type_ >
Chris@16 15 struct quote_impl
Chris@16 16 : T
Chris@16 17 {
Chris@16 18 };
Chris@16 19
Chris@16 20 template< typename T >
Chris@16 21 struct quote_impl< T,false >
Chris@16 22 {
Chris@16 23 typedef T type;
Chris@16 24 };
Chris@16 25
Chris@16 26 template<
Chris@16 27 template< typename P1 > class F
Chris@16 28 , typename Tag = void_
Chris@16 29 >
Chris@16 30 struct quote1
Chris@16 31 {
Chris@16 32 template< typename U1 > struct apply
Chris@16 33
Chris@16 34 : quote_impl<
Chris@16 35 F<U1>
Chris@16 36 , aux::has_type< F<U1> >::value
Chris@16 37 >
Chris@16 38
Chris@16 39 {
Chris@16 40 };
Chris@16 41 };
Chris@16 42
Chris@16 43 template<
Chris@16 44 template< typename P1, typename P2 > class F
Chris@16 45 , typename Tag = void_
Chris@16 46 >
Chris@16 47 struct quote2
Chris@16 48 {
Chris@16 49 template< typename U1, typename U2 > struct apply
Chris@16 50
Chris@16 51 : quote_impl<
Chris@16 52 F< U1,U2 >
Chris@16 53 , aux::has_type< F< U1,U2 > >::value
Chris@16 54 >
Chris@16 55
Chris@16 56 {
Chris@16 57 };
Chris@16 58 };
Chris@16 59
Chris@16 60 template<
Chris@16 61 template< typename P1, typename P2, typename P3 > class F
Chris@16 62 , typename Tag = void_
Chris@16 63 >
Chris@16 64 struct quote3
Chris@16 65 {
Chris@16 66 template< typename U1, typename U2, typename U3 > struct apply
Chris@16 67
Chris@16 68 : quote_impl<
Chris@16 69 F< U1,U2,U3 >
Chris@16 70 , aux::has_type< F< U1,U2,U3 > >::value
Chris@16 71 >
Chris@16 72
Chris@16 73 {
Chris@16 74 };
Chris@16 75 };
Chris@16 76
Chris@16 77 template<
Chris@16 78 template< typename P1, typename P2, typename P3, typename P4 > class F
Chris@16 79 , typename Tag = void_
Chris@16 80 >
Chris@16 81 struct quote4
Chris@16 82 {
Chris@16 83 template<
Chris@16 84 typename U1, typename U2, typename U3, typename U4
Chris@16 85 >
Chris@16 86 struct apply
Chris@16 87
Chris@16 88 : quote_impl<
Chris@16 89 F< U1,U2,U3,U4 >
Chris@16 90 , aux::has_type< F< U1,U2,U3,U4 > >::value
Chris@16 91 >
Chris@16 92
Chris@16 93 {
Chris@16 94 };
Chris@16 95 };
Chris@16 96
Chris@16 97 template<
Chris@16 98 template<
Chris@16 99 typename P1, typename P2, typename P3, typename P4
Chris@16 100 , typename P5
Chris@16 101 >
Chris@16 102 class F
Chris@16 103 , typename Tag = void_
Chris@16 104 >
Chris@16 105 struct quote5
Chris@16 106 {
Chris@16 107 template<
Chris@16 108 typename U1, typename U2, typename U3, typename U4
Chris@16 109 , typename U5
Chris@16 110 >
Chris@16 111 struct apply
Chris@16 112
Chris@16 113 : quote_impl<
Chris@16 114 F< U1,U2,U3,U4,U5 >
Chris@16 115 , aux::has_type< F< U1,U2,U3,U4,U5 > >::value
Chris@16 116 >
Chris@16 117
Chris@16 118 {
Chris@16 119 };
Chris@16 120 };
Chris@16 121
Chris@16 122 }}
Chris@16 123