~ubuntu-branches/ubuntu/saucy/deal.ii/saucy

« back to all changes in this revision

Viewing changes to contrib/boost-1.46.1/include/boost/mpl/aux_/preprocessed/msvc60/arg.hpp

  • Committer: Package Import Robot
  • Author(s): "Adam C. Powell, IV", Adam C. Powell, IV, Christophe Trophime
  • Date: 2012-02-21 06:57:30 UTC
  • mfrom: (3.1.7 sid)
  • Revision ID: package-import@ubuntu.com-20120221065730-r2iz70lg557wcd2e
Tags: 7.1.0-1
[ Adam C. Powell, IV ]
* New upstream (closes: #652057).
* Updated to use PETSc and SLEPc 3.2, and forward-ported all patches.
* Removed NetCDF Build-Depends because it uses serial HDF5.
* Made Sacado cmath patch work with new configure.
* Moved -dev package symlink lines in rules to arch all section.

[ Christophe Trophime ]
* debian/rules:
   - add dh_strip --dbg-package to generate dbg package (closes: #652058)
   - add .install files to simplify rules
* Add support for mumps, arpack (closes: #637655)
* Add patch for slepc 3.2 (closes: #659245)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
// Copyright Peter Dimov 2001-2002
 
3
// Copyright Aleksey Gurtovoy 2001-2004
 
4
//
 
5
// Distributed under the Boost Software License, Version 1.0. 
 
6
// (See accompanying file LICENSE_1_0.txt or copy at 
 
7
// http://www.boost.org/LICENSE_1_0.txt)
 
8
//
 
9
 
 
10
// Preprocessed version of "boost/mpl/arg.hpp" header
 
11
// -- DO NOT modify by hand!
 
12
 
 
13
BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_OPEN
 
14
template<> struct arg< -1 >
 
15
{
 
16
    BOOST_STATIC_CONSTANT(int, value  = -1);
 
17
    BOOST_MPL_AUX_ARG_TYPEDEF(na, tag)
 
18
    BOOST_MPL_AUX_ARG_TYPEDEF(na, type)
 
19
 
 
20
    template<
 
21
          typename U1 = na, typename U2 = na, typename U3 = na
 
22
        , typename U4 = na, typename U5 = na
 
23
        >
 
24
    struct apply
 
25
    {
 
26
        typedef U1 type;
 
27
        BOOST_MPL_AUX_ASSERT_NOT_NA(type);
 
28
    };
 
29
};
 
30
 
 
31
template<> struct arg<1>
 
32
{
 
33
    BOOST_STATIC_CONSTANT(int, value  = 1);
 
34
    typedef arg<2> next;
 
35
    BOOST_MPL_AUX_ARG_TYPEDEF(na, tag)
 
36
    BOOST_MPL_AUX_ARG_TYPEDEF(na, type)
 
37
 
 
38
    template<
 
39
          typename U1 = na, typename U2 = na, typename U3 = na
 
40
        , typename U4 = na, typename U5 = na
 
41
        >
 
42
    struct apply
 
43
    {
 
44
        typedef U1 type;
 
45
        BOOST_MPL_AUX_ASSERT_NOT_NA(type);
 
46
    };
 
47
};
 
48
 
 
49
template<> struct arg<2>
 
50
{
 
51
    BOOST_STATIC_CONSTANT(int, value  = 2);
 
52
    typedef arg<3> next;
 
53
    BOOST_MPL_AUX_ARG_TYPEDEF(na, tag)
 
54
    BOOST_MPL_AUX_ARG_TYPEDEF(na, type)
 
55
 
 
56
    template<
 
57
          typename U1 = na, typename U2 = na, typename U3 = na
 
58
        , typename U4 = na, typename U5 = na
 
59
        >
 
60
    struct apply
 
61
    {
 
62
        typedef U2 type;
 
63
        BOOST_MPL_AUX_ASSERT_NOT_NA(type);
 
64
    };
 
65
};
 
66
 
 
67
template<> struct arg<3>
 
68
{
 
69
    BOOST_STATIC_CONSTANT(int, value  = 3);
 
70
    typedef arg<4> next;
 
71
    BOOST_MPL_AUX_ARG_TYPEDEF(na, tag)
 
72
    BOOST_MPL_AUX_ARG_TYPEDEF(na, type)
 
73
 
 
74
    template<
 
75
          typename U1 = na, typename U2 = na, typename U3 = na
 
76
        , typename U4 = na, typename U5 = na
 
77
        >
 
78
    struct apply
 
79
    {
 
80
        typedef U3 type;
 
81
        BOOST_MPL_AUX_ASSERT_NOT_NA(type);
 
82
    };
 
83
};
 
84
 
 
85
template<> struct arg<4>
 
86
{
 
87
    BOOST_STATIC_CONSTANT(int, value  = 4);
 
88
    typedef arg<5> next;
 
89
    BOOST_MPL_AUX_ARG_TYPEDEF(na, tag)
 
90
    BOOST_MPL_AUX_ARG_TYPEDEF(na, type)
 
91
 
 
92
    template<
 
93
          typename U1 = na, typename U2 = na, typename U3 = na
 
94
        , typename U4 = na, typename U5 = na
 
95
        >
 
96
    struct apply
 
97
    {
 
98
        typedef U4 type;
 
99
        BOOST_MPL_AUX_ASSERT_NOT_NA(type);
 
100
    };
 
101
};
 
102
 
 
103
template<> struct arg<5>
 
104
{
 
105
    BOOST_STATIC_CONSTANT(int, value  = 5);
 
106
    typedef arg<6> next;
 
107
    BOOST_MPL_AUX_ARG_TYPEDEF(na, tag)
 
108
    BOOST_MPL_AUX_ARG_TYPEDEF(na, type)
 
109
 
 
110
    template<
 
111
          typename U1 = na, typename U2 = na, typename U3 = na
 
112
        , typename U4 = na, typename U5 = na
 
113
        >
 
114
    struct apply
 
115
    {
 
116
        typedef U5 type;
 
117
        BOOST_MPL_AUX_ASSERT_NOT_NA(type);
 
118
    };
 
119
};
 
120
 
 
121
BOOST_MPL_AUX_NONTYPE_ARITY_SPEC(1,int, arg)
 
122
 
 
123
BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_CLOSE