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

« back to all changes in this revision

Viewing changes to contrib/boost/include/boost/mpl/aux_/preprocessed/dmc/apply_wrap.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 Aleksey Gurtovoy 2000-2004
3
 
//
4
 
// Distributed under the Boost Software License, Version 1.0. 
5
 
// (See accompanying file LICENSE_1_0.txt or copy at 
6
 
// http://www.boost.org/LICENSE_1_0.txt)
7
 
//
8
 
 
9
 
// Preprocessed version of "boost/mpl/apply_wrap.hpp" header
10
 
// -- DO NOT modify by hand!
11
 
 
12
 
namespace boost { namespace mpl {
13
 
 
14
 
template<
15
 
      typename F
16
 
 
17
 
    , typename has_apply_ = typename aux::has_apply<F>::type
18
 
 
19
 
    >
20
 
struct apply_wrap0
21
 
 
22
 
    : F::template apply<  >
23
 
{
24
 
};
25
 
 
26
 
template< typename F >
27
 
struct apply_wrap0< F,true_ >
28
 
    : F::apply
29
 
{
30
 
};
31
 
 
32
 
template<
33
 
      typename F, typename T1
34
 
 
35
 
    >
36
 
struct apply_wrap1
37
 
 
38
 
    : F::template apply<T1>
39
 
{
40
 
};
41
 
 
42
 
template<
43
 
      typename F, typename T1, typename T2
44
 
 
45
 
    >
46
 
struct apply_wrap2
47
 
 
48
 
    : F::template apply< T1,T2 >
49
 
{
50
 
};
51
 
 
52
 
template<
53
 
      typename F, typename T1, typename T2, typename T3
54
 
 
55
 
    >
56
 
struct apply_wrap3
57
 
 
58
 
    : F::template apply< T1,T2,T3 >
59
 
{
60
 
};
61
 
 
62
 
template<
63
 
      typename F, typename T1, typename T2, typename T3, typename T4
64
 
 
65
 
    >
66
 
struct apply_wrap4
67
 
 
68
 
    : F::template apply< T1,T2,T3,T4 >
69
 
{
70
 
};
71
 
 
72
 
template<
73
 
      typename F, typename T1, typename T2, typename T3, typename T4
74
 
    , typename T5
75
 
 
76
 
    >
77
 
struct apply_wrap5
78
 
 
79
 
    : F::template apply< T1,T2,T3,T4,T5 >
80
 
{
81
 
};
82
 
 
83
 
}}
84