我想模拟一个返回auto_ptr的方法。
到目前为止,我做到了这一点,
class ClassAMock : public ClassA
{
public:
MOCK_METHOD0(method, std::auto_ptr<MyClass>());
};
我收到此错误,
Error 78 error C2558: class 'std::auto_ptr<MyClass>' : no copy constructor available or copy constructor is declared 'explicit'
帮我解决此问题。