From: Jay Freeman (saurik) Date: Fri, 21 Jun 2013 13:16:19 +0000 (-0700) Subject: Remove support for parent pools from CYPool. X-Git-Tag: v0.9.500%b1~65 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/fe3189de0468ef6e507e999ac900151e5aeee826 Remove support for parent pools from CYPool. --- diff --git a/Pooling.hpp b/Pooling.hpp index a8c1fd9..ea9f995 100644 --- a/Pooling.hpp +++ b/Pooling.hpp @@ -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() {