Module Name:    src
Committed By:   lukem
Date:           Thu Jul  2 13:54:19 UTC 2020

Modified Files:
        src/external/bsd/lutok/dist: stack_cleaner.hpp

Log Message:
lutok: use unique_ptr not auto_ptr


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.1 -r1.2 src/external/bsd/lutok/dist/stack_cleaner.hpp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/lutok/dist/stack_cleaner.hpp
diff -u src/external/bsd/lutok/dist/stack_cleaner.hpp:1.1.1.1 src/external/bsd/lutok/dist/stack_cleaner.hpp:1.2
--- src/external/bsd/lutok/dist/stack_cleaner.hpp:1.1.1.1	Sat Feb 16 15:06:52 2013
+++ src/external/bsd/lutok/dist/stack_cleaner.hpp	Thu Jul  2 13:54:19 2020
@@ -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&);

Reply via email to