integral_constant.hpp 824 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. (c) 2014-2015 Glen Joseph Fernandes
  3. <glenjofe -at- gmail.com>
  4. Distributed under the Boost Software
  5. License, Version 1.0.
  6. http://boost.org/LICENSE_1_0.txt
  7. */
  8. #ifndef BOOST_ALIGN_DETAIL_INTEGRAL_CONSTANT_HPP
  9. #define BOOST_ALIGN_DETAIL_INTEGRAL_CONSTANT_HPP
  10. #include <boost/config.hpp>
  11. #if !defined(BOOST_NO_CXX11_HDR_TYPE_TRAITS)
  12. #include <type_traits>
  13. #endif
  14. namespace boost {
  15. namespace alignment {
  16. namespace detail {
  17. #if !defined(BOOST_NO_CXX11_HDR_TYPE_TRAITS)
  18. using std::integral_constant;
  19. #else
  20. template<class T, T Value>
  21. struct integral_constant {
  22. typedef T value_type;
  23. typedef integral_constant type;
  24. BOOST_CONSTEXPR operator value_type() const {
  25. return Value;
  26. }
  27. static BOOST_CONSTEXPR_OR_CONST T value = Value;
  28. };
  29. #endif
  30. } /* .detail */
  31. } /* .alignment */
  32. } /* .boost */
  33. #endif