]> git.saurik.com Git - cycript.git/blobdiff - Pooling.hpp
Check for APR and GNU make.
[cycript.git] / Pooling.hpp
index c9076624e445abdf8d79dde80084b477bf7283cf..a182906e0c9ef343a37e4ed2d135d23bfe2f78e9 100644 (file)
@@ -88,6 +88,12 @@ class CYPool {
 
 struct CYData {
     apr_pool_t *pool_;
+    unsigned count_;
+
+    CYData() :
+        count_(1)
+    {
+    }
 
     virtual ~CYData() {
     }
@@ -107,7 +113,6 @@ struct CYData {
     static void operator delete(void *data) {
         apr_pool_destroy(reinterpret_cast<CYData *>(data)->pool_);
     }
-
 };
 
 template <typename Type_>