/* (c) 2014 Glen Joseph Fernandes Distributed under the Boost Software License, Version 1.0. http://boost.org/LICENSE_1_0.txt */ #ifndef ALIGNED_VECTOR_HPP #define ALIGNED_VECTOR_HPP #include #include template using aligned_vector = std::vector >; #endif