123456789101112131415161718192021222324252627282930313233 |
- #ifndef BOOST_HANA_DETAIL_WRONG_HPP
- #define BOOST_HANA_DETAIL_WRONG_HPP
- #include <boost/hana/config.hpp>
- #include <type_traits>
- namespace boost { namespace hana { namespace detail {
-
-
-
-
-
-
-
-
-
-
- template <typename ...>
- struct wrong : std::false_type { };
- } }}
- #endif
|