align.hpp 397 B

1234567891011121314151617181920
  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_ALIGN_HPP
  9. #define BOOST_ALIGN_ALIGN_HPP
  10. #include <boost/config.hpp>
  11. #if !defined(BOOST_NO_CXX11_STD_ALIGN)
  12. #include <boost/align/detail/align_cxx11.hpp>
  13. #else
  14. #include <boost/align/detail/align.hpp>
  15. #endif
  16. #endif