• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2 Copyright 2014 Glen Joseph Fernandes
3 (glenjofe@gmail.com)
4 
5 Distributed under the Boost Software License, Version 1.0.
6 (http://www.boost.org/LICENSE_1_0.txt)
7 */
8 #ifndef BOOST_ALIGN_ALIGNED_ALLOCATOR_ADAPTOR_FORWARD_HPP
9 #define BOOST_ALIGN_ALIGNED_ALLOCATOR_ADAPTOR_FORWARD_HPP
10 
11 #include <cstddef>
12 
13 namespace boost {
14 namespace alignment {
15 
16 template<class Allocator, std::size_t Alignment = 1>
17 class aligned_allocator_adaptor;
18 
19 } /* alignment */
20 } /* boost */
21 
22 #endif
23