aligned_allocator_forward.hpp 436 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_FORWARD_HPP
  8. #define BOOST_ALIGN_ALIGNED_ALLOCATOR_FORWARD_HPP
  9. #include <cstddef>
  10. namespace boost {
  11. namespace alignment {
  12. template<class T, std::size_t Alignment = 1>
  13. class aligned_allocator;
  14. } /* alignment */
  15. } /* boost */
  16. #endif