lutok: use unique_ptr not auto_ptr

This commit is contained in:
lukem 2020-07-02 13:54:19 +00:00
parent c9e3efd544
commit 8665e60721

View File

@ -72,7 +72,7 @@ class stack_cleaner {
struct impl;
/// Pointer to the shared internal implementation.
std::auto_ptr< impl > _pimpl;
std::unique_ptr< impl > _pimpl;
/// Disallow copies.
stack_cleaner(const stack_cleaner&);