Swap use of deprecated auto_ptr for unique_ptr in cvfMutex.h

This commit is contained in:
Gaute Lindkvist
2020-10-20 11:05:10 +02:00
parent 61809b6e22
commit 2110323be7
+1 -1
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);
};