diff options
author | Albert Astals Cid <albert.astals.cid@kdab.com> | 2019-02-14 17:29:57 +0100 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-02-15 07:25:47 -0500 |
commit | ae5e97a00568d15dedea073b58668e646e3c0d2e (patch) | |
tree | 10ba898956021469c0de5db595ca511c0c83cffd /Source/cmArchiveWrite.cxx | |
parent | e3353a0175fb27bc2967c3df78b8be1c0615b21d (diff) | |
download | cmake-ae5e97a00568d15dedea073b58668e646e3c0d2e.tar.gz |
Delete some default constructors and assignment operators
They are unused, but if someone used them they would lead to
problems since they would copy the internal raw pointers
and the destructor would cause double delete
Diffstat (limited to 'Source/cmArchiveWrite.cxx')
-rw-r--r-- | Source/cmArchiveWrite.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmArchiveWrite.cxx b/Source/cmArchiveWrite.cxx index 6e5109aa1a..23be603f13 100644 --- a/Source/cmArchiveWrite.cxx +++ b/Source/cmArchiveWrite.cxx @@ -54,6 +54,8 @@ public: { } ~Entry() { archive_entry_free(this->Object); } + Entry(const Entry&) = delete; + Entry& operator=(const Entry&) = delete; operator struct archive_entry*() { return this->Object; } }; |