ice.hpp 768 B

1234567891011121314151617181920
  1. // (C) Copyright John Maddock and Steve Cleary 2000.
  2. // Use, modification and distribution are subject to the Boost Software License,
  3. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt).
  5. //
  6. // See http://www.boost.org/libs/type_traits for most recent version including documentation.
  7. //
  8. // macros and helpers for working with integral-constant-expressions.
  9. #ifndef BOOST_TT_ICE_HPP_INCLUDED
  10. #define BOOST_TT_ICE_HPP_INCLUDED
  11. #include <boost/type_traits/detail/yes_no_type.hpp>
  12. #include <boost/type_traits/detail/ice_or.hpp>
  13. #include <boost/type_traits/detail/ice_and.hpp>
  14. #include <boost/type_traits/detail/ice_not.hpp>
  15. #include <boost/type_traits/detail/ice_eq.hpp>
  16. #endif // BOOST_TT_ICE_HPP_INCLUDED