]> git.lyx.org Git - lyx.git/blob - boost/boost/mpl/aux_/arity.hpp
update boost to version 1.29.0
[lyx.git] / boost / boost / mpl / aux_ / arity.hpp
1 //-----------------------------------------------------------------------------
2 // boost mpl/aux_/arity.hpp header file
3 // See http://www.boost.org for updates, documentation, and revision history.
4 //-----------------------------------------------------------------------------
5 //
6 // Copyright (c) 2001-02
7 // Aleksey Gurtovoy
8 //
9 // Permission to use, copy, modify, distribute and sell this software
10 // and its documentation for any purpose is hereby granted without fee, 
11 // provided that the above copyright notice appears in all copies and 
12 // that both the copyright notice and this permission notice appear in 
13 // supporting documentation. No representations are made about the 
14 // suitability of this software for any purpose. It is provided "as is" 
15 // without express or implied warranty.
16
17 #ifndef BOOST_MPL_AUX_ARITY_HPP_INCLUDED
18 #define BOOST_MPL_AUX_ARITY_HPP_INCLUDED
19
20 #include "boost/mpl/aux_/config/dtp.hpp"
21
22 #if defined(BOOST_BROKEN_DEFAULT_TEMPLATE_PARAMETERS_IN_NESTED_TEMPLATES)
23
24 #   include "boost/config.hpp"
25
26 namespace boost {
27 namespace mpl {
28 namespace aux {
29
30 // agurt, 15/mar/02: it's possible to implement the template so that it will 
31 // "just work" and do not require any specialization, but not on the compilers
32 // that require the arity workaround in the first place
33 template< typename F, int N >
34 struct arity
35 {
36     BOOST_STATIC_CONSTANT(int, value = N);
37 };
38
39 } // namespace aux
40 } // namespace mpl
41 } // namespace boost
42
43 #endif // BOOST_BROKEN_DEFAULT_TEMPLATE_PARAMETERS_IN_NESTED_TEMPLATES
44
45 #endif // BOOST_MPL_AUX_ARITY_HPP_INCLUDED