]> git.donarmstrong.com Git - rsem.git/blob - boost/type_traits/conditional.hpp
8bbda85fc6b3c15b3f6006ae2af0c5fd0e990f3b
[rsem.git] / boost / type_traits / conditional.hpp
1
2 //  (C) Copyright John Maddock 2010.  
3 //  Use, modification and distribution are subject to the Boost Software License,
4 //  Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 //  http://www.boost.org/LICENSE_1_0.txt).
6 //
7 //  See http://www.boost.org/libs/type_traits for most recent version including documentation.
8
9
10 #ifndef BOOST_TT_CONDITIONAL_HPP_INCLUDED
11 #define BOOST_TT_CONDITIONAL_HPP_INCLUDED
12
13 #include <boost/mpl/if.hpp>
14
15 namespace boost {
16
17 template <bool b, class T, class U>
18 struct conditional : public mpl::if_c<b, T, U>
19 {
20 };
21
22 } // namespace boost
23
24
25 #endif // BOOST_TT_CONDITIONAL_HPP_INCLUDED