#ifndef SPROUT_FIXED_CONTAINER_MAKE_CLONE_HPP #define SPROUT_FIXED_CONTAINER_MAKE_CLONE_HPP #include #include namespace sprout { // // make_clone // template SPROUT_CONSTEXPR inline typename sprout::fixed_container_traits::clone_type make_clone(Args const&... args) { return sprout::make_clone_functor().template operator()(args...); } } // namespace sprout #endif // #ifndef SPROUT_FIXED_CONTAINER_MAKE_CLONE_HPP