align_cxx11.hpp 369 B

123456789101112131415161718192021
  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_ALIGN_CXX11_HPP
  8. #define BOOST_ALIGN_DETAIL_ALIGN_CXX11_HPP
  9. #include <memory>
  10. namespace boost {
  11. namespace alignment {
  12. using std::align;
  13. } /* alignment */
  14. } /* boost */
  15. #endif