File indexing completed on 2025-01-18 09:53:09
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #ifndef BOOST_TT_ENABLE_IF_HPP_INCLUDED
0016 #define BOOST_TT_ENABLE_IF_HPP_INCLUDED
0017
0018 #include <boost/config.hpp>
0019
0020 namespace boost {
0021
0022 template<bool B, class T = void>
0023 struct enable_if_ {
0024 typedef T type;
0025 };
0026
0027 template<class T>
0028 struct enable_if_<false, T> { };
0029
0030 #if !defined(BOOST_NO_CXX11_TEMPLATE_ALIASES)
0031 template<bool B, class T = void>
0032 using enable_if_t = typename enable_if_<B, T>::type;
0033 #endif
0034
0035 }
0036
0037 #endif