12 #ifndef BOOST_MPL11_DETAIL_LOGICAL_OR_STRICT_SPECIALIZATION_HPP
13 #define BOOST_MPL11_DETAIL_LOGICAL_OR_STRICT_SPECIALIZATION_HPP
18 namespace boost {
namespace mpl11 {
namespace detail {
namespace logical_or {
19 template <
typename ...xs>
20 struct strict_specialization_impl
24 template <
typename ...T>
25 struct strict_specialization_impl<integer_c<T, false>...>
35 template <
typename ...xs>
36 using strict_specialization = strict_specialization_impl<
37 bool_<(bool)xs::type::value>...
41 #endif // !BOOST_MPL11_DETAIL_LOGICAL_OR_STRICT_SPECIALIZATION_HPP
Forwards to boost/mpl11/integer.hpp.