]> git.saurik.com Git - apt.git/commitdiff
Delete copy constructor and operator= for Dynamic
authorJulian Andres Klode <jak@debian.org>
Tue, 26 Jan 2016 11:42:39 +0000 (12:42 +0100)
committerJulian Andres Klode <jak@debian.org>
Tue, 26 Jan 2016 11:45:32 +0000 (12:45 +0100)
This would mess up reference counting and should not be allowed
(it could be implemented correctly, but it would not be efficient
and we do not need it).

Gbp-Dch: ignore

apt-pkg/pkgcachegen.h

index ea288ad6e6ae73922d6b9bd9e33c81a0409d4152..f22a2df4ec763cbc8cb7c11231c9910e1ae4c794 100644 (file)
@@ -93,6 +93,11 @@ class APT_HIDDEN pkgCacheGenerator                                   /*{{{*/
       ~Dynamic() {
         toReMap.pop_back();
       }
+
+#if __cplusplus >= 201103L
+      Dynamic(const Dynamic&) = delete;
+      void operator=(const Dynamic&) = delete;
+#endif
    };
 
    protected: