alignment_of.hpp 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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_ALIGNMENT_OF_HPP
  9. #define BOOST_ALIGN_ALIGNMENT_OF_HPP
  10. #include <boost/align/detail/element_type.hpp>
  11. #include <boost/align/alignment_of_forward.hpp>
  12. #if defined(BOOST_MSVC)
  13. #include <boost/align/detail/alignment_of_msvc.hpp>
  14. #elif defined(__GNUC__) && defined(__unix__) && !defined(__LP64__)
  15. #include <boost/align/detail/alignment_of.hpp>
  16. #elif defined(BOOST_CLANG) && !defined(__x86_64__)
  17. #include <boost/align/detail/alignment_of.hpp>
  18. #elif !defined(BOOST_NO_CXX11_HDR_TYPE_TRAITS)
  19. #include <boost/align/detail/alignment_of_cxx11.hpp>
  20. #elif defined(__ghs__) && (__GHS_VERSION_NUMBER >= 600)
  21. #include <boost/align/detail/alignment_of_gcc.hpp>
  22. #elif defined(__CODEGEARC__)
  23. #include <boost/align/detail/alignment_of_codegear.hpp>
  24. #elif defined(BOOST_CLANG)
  25. #include <boost/align/detail/alignment_of_clang.hpp>
  26. #elif __GNUC__ > 4
  27. #include <boost/align/detail/alignment_of_gcc.hpp>
  28. #elif (__GNUC__ == 4) && (__GNUC_MINOR__ >= 3)
  29. #include <boost/align/detail/alignment_of_gcc.hpp>
  30. #else
  31. #include <boost/align/detail/alignment_of.hpp>
  32. #endif
  33. namespace boost {
  34. namespace alignment {
  35. template<class T>
  36. struct alignment_of
  37. : detail::alignment_of<typename
  38. detail::element_type<T>::type>::type {
  39. };
  40. #if !defined(BOOST_NO_CXX14_VARIABLE_TEMPLATES)
  41. template<class T>
  42. constexpr std::size_t alignment_of_v = alignment_of<T>::value;
  43. #endif
  44. } /* .alignment */
  45. } /* .boost */
  46. #endif