aboutsummaryrefslogtreecommitdiff
path: root/CPP/Common/AutoPtr.h
diff options
context:
space:
mode:
authorIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-06-21 00:00:00 +0000
committerIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-12-17 14:59:19 +0500
commit5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch)
treefe5e17420300b715021a76328444088d32047963 /CPP/Common/AutoPtr.h
parent93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff)
download7zip-23.01.tar.gz
7zip-23.01.tar.bz2
7zip-23.01.zip
23.0123.01
Diffstat (limited to '')
-rw-r--r--CPP/Common/AutoPtr.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/CPP/Common/AutoPtr.h b/CPP/Common/AutoPtr.h
index 006d315..0be8a7a 100644
--- a/CPP/Common/AutoPtr.h
+++ b/CPP/Common/AutoPtr.h
@@ -1,13 +1,13 @@
1// Common/AutoPtr.h 1// Common/AutoPtr.h
2 2
3#ifndef __COMMON_AUTOPTR_H 3#ifndef ZIP7_INC_COMMON_AUTOPTR_H
4#define __COMMON_AUTOPTR_H 4#define ZIP7_INC_COMMON_AUTOPTR_H
5 5
6template<class T> class CMyAutoPtr 6template<class T> class CMyAutoPtr
7{ 7{
8 T *_p; 8 T *_p;
9public: 9public:
10 CMyAutoPtr(T *p = 0) : _p(p) {} 10 CMyAutoPtr(T *p = NULL) : _p(p) {}
11 CMyAutoPtr(CMyAutoPtr<T>& p): _p(p.release()) {} 11 CMyAutoPtr(CMyAutoPtr<T>& p): _p(p.release()) {}
12 CMyAutoPtr<T>& operator=(CMyAutoPtr<T>& p) 12 CMyAutoPtr<T>& operator=(CMyAutoPtr<T>& p)
13 { 13 {
@@ -21,10 +21,10 @@ public:
21 T* release() 21 T* release()
22 { 22 {
23 T *tmp = _p; 23 T *tmp = _p;
24 _p = 0; 24 _p = NULL;
25 return tmp; 25 return tmp;
26 } 26 }
27 void reset(T* p = 0) 27 void reset(T* p = NULL)
28 { 28 {
29 if (p != _p) 29 if (p != _p)
30 delete _p; 30 delete _p;