Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:28:26

0001 /*
0002 Copyright 2014 Glen Joseph Fernandes
0003 (glenjofe@gmail.com)
0004 
0005 Distributed under the Boost Software License, Version 1.0.
0006 (http://www.boost.org/LICENSE_1_0.txt)
0007 */
0008 #ifndef BOOST_ALIGN_ALIGNED_ALLOCATOR_ADAPTOR_FORWARD_HPP
0009 #define BOOST_ALIGN_ALIGNED_ALLOCATOR_ADAPTOR_FORWARD_HPP
0010 
0011 #include <cstddef>
0012 
0013 namespace boost {
0014 namespace alignment {
0015 
0016 template<class Allocator, std::size_t Alignment = 1>
0017 class aligned_allocator_adaptor;
0018 
0019 } /* alignment */
0020 } /* boost */
0021 
0022 #endif