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