12345678910111213141516171819202122 |
- #ifndef BOOST_ALIGN_ALIGNED_ALLOCATOR_FORWARD_HPP
- #define BOOST_ALIGN_ALIGNED_ALLOCATOR_FORWARD_HPP
- #include <cstddef>
- namespace boost {
- namespace alignment {
- template<class T, std::size_t Alignment = 1>
- class aligned_allocator;
- }
- }
- #endif
|