template<class T> struct is_shared_ptr : std::false_type {}; template<class T> struct is_shared_ptr<std::shared_ptr<T>> : std::true_type {};