alignment_of_cxx11.hpp 429 B

1234567891011121314151617181920212223
  1. /*
  2. Copyright 2014 Glen Joseph Fernandes
  3. (glenjofe@gmail.com)
  4. Distributed under the Boost Software License, Version 1.0.
  5. (http://www.boost.org/LICENSE_1_0.txt)
  6. */
  7. #ifndef BOOST_ALIGN_DETAIL_ALIGNMENT_OF_CXX11_HPP
  8. #define BOOST_ALIGN_DETAIL_ALIGNMENT_OF_CXX11_HPP
  9. #include <type_traits>
  10. namespace boost {
  11. namespace alignment {
  12. namespace detail {
  13. using std::alignment_of;
  14. } /* detail */
  15. } /* alignment */
  16. } /* boost */
  17. #endif