]> git.saurik.com Git - cycript.git/commitdiff
Remove support for parent pools from CYPool.
authorJay Freeman (saurik) <saurik@saurik.com>
Fri, 21 Jun 2013 13:16:19 +0000 (06:16 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Fri, 21 Jun 2013 14:46:13 +0000 (07:46 -0700)
Pooling.hpp

index a8c1fd929b72f0a379aaa70bb712749acb88cd3c..ea9f995fc134bc20655f72b2061e843316e90b3c 100644 (file)
@@ -44,8 +44,8 @@ class CYPool {
     apr_pool_t *pool_;
 
   public:
-    CYPool(apr_pool_t *pool = NULL) {
-        _aprcall(apr_pool_create(&pool_, pool));
+    CYPool() {
+        _aprcall(apr_pool_create(&pool_, NULL));
     }
 
     ~CYPool() {