Project revived from Feb2017
[EroSomnia.git] / deps / boost_1_63_0 / boost / mpl / aux_ / preprocessed / msvc60 / template_arity.hpp
blob16687713492a84da0c8147493911680c6db6fbb7
2 // Copyright Aleksey Gurtovoy 2001-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 //
9 // Preprocessed version of "boost/mpl/aux_/template_arity.hpp" header
10 // -- DO NOT modify by hand!
12 namespace boost { namespace mpl { namespace aux {
14 template< bool >
15 struct template_arity_impl
17 template< typename F > struct result_
18 : mpl::int_< -1 >
23 template<>
24 struct template_arity_impl<true>
26 template< typename F > struct result_
27 : F::arity
32 template< typename F >
33 struct template_arity
34 : template_arity_impl< ::boost::mpl::aux::has_rebind<F>::value >
35 ::template result_<F>
39 template<>
40 struct template_arity<int>
41 : mpl::int_< -1 >
45 }}}