aligned_allocator_adaptor_forward.hpp 468 B

12345678910111213141516171819202122
  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_ALIGNED_ALLOCATOR_ADAPTOR_FORWARD_HPP
  8. #define BOOST_ALIGN_ALIGNED_ALLOCATOR_ADAPTOR_FORWARD_HPP
  9. #include <cstddef>
  10. namespace boost {
  11. namespace alignment {
  12. template<class Allocator, std::size_t Alignment = 1>
  13. class aligned_allocator_adaptor;
  14. } /* alignment */
  15. } /* boost */
  16. #endif