]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/sptr.h
fix memory leaks reported by -fsanitize
[apt.git] / apt-pkg / contrib / sptr.h
index 9df0e44a71b0b8ae862a98dc9f1b606315fccf92..e2e811b1d1696937776ee38f367feae88073a0c9 100644 (file)
@@ -60,7 +60,15 @@ class SPtrArray
    
    inline SPtrArray(T *Ptr) : Ptr(Ptr) {};
    inline SPtrArray() : Ptr(0) {};
+#if __GNUC__ >= 4
+       #pragma GCC diagnostic push
+       #pragma GCC diagnostic ignored "-Wunsafe-loop-optimizations"
+       // gcc warns about this, but we can do nothing hereā€¦
+#endif
    inline ~SPtrArray() {delete [] Ptr;};
+#if __GNUC__ >= 4
+       #pragma GCC diagnostic pop
+#endif
 };
 
 #endif