align.hpp 404 B

12345678910111213141516171819
  1. /*
  2. Copyright 2014-2015 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_ALIGN_HPP
  8. #define BOOST_ALIGN_ALIGN_HPP
  9. #include <boost/config.hpp>
  10. #if !defined(BOOST_NO_CXX11_STD_ALIGN)
  11. #include <boost/align/detail/align_cxx11.hpp>
  12. #else
  13. #include <boost/align/detail/align.hpp>
  14. #endif
  15. #endif