#include void copy_ptr(std::shared_ptr& a, std::shared_ptr const& b) { a = b; } void move_ptr(std::shared_ptr& a, std::shared_ptr& b) { a = std::move(b); }