Swap use of deprecated auto_ptr for unique_ptr in cvfMutex.h

This commit is contained in:
Gaute Lindkvist 2020-09-23 14:41:28 +02:00
parent 61809b6e22
commit 2110323be7

View File

@ -67,7 +67,7 @@ public:
};
private:
std::auto_ptr<class MutexImpl> m_pimpl;
std::unique_ptr<class MutexImpl> m_pimpl;
CVF_DISABLE_COPY_AND_ASSIGN(Mutex);
};