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