From: Michael Wallner Date: Tue, 6 Feb 2007 10:31:38 +0000 (+0000) Subject: - remove arginfo on ctor X-Git-Tag: RELEASE_1_5_0_RC1~7 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=5a476d6738a5a8de45e86158aa2aba20c26a7e16 - remove arginfo on ctor --- diff --git a/http_requestpool_object.c b/http_requestpool_object.c index 3a203ef..8e6369e 100644 --- a/http_requestpool_object.c +++ b/http_requestpool_object.c @@ -35,11 +35,7 @@ extern PHPAPI zend_class_entry *spl_ce_Countable; #define HTTP_EMPTY_ARGS(method) HTTP_EMPTY_ARGS_EX(HttpRequestPool, method, 0) #define HTTP_REQPOOL_ME(method, visibility) PHP_ME(HttpRequestPool, method, HTTP_ARGS(HttpRequestPool, method), visibility) -HTTP_BEGIN_ARGS(__construct, 0) - HTTP_ARG_OBJ(HttpRequest, request0, 0) - HTTP_ARG_OBJ(HttpRequest, request1, 0) - HTTP_ARG_OBJ(HttpRequest, requestN, 0) -HTTP_END_ARGS; +HTTP_EMPTY_ARGS(__construct); HTTP_EMPTY_ARGS(__destruct); HTTP_EMPTY_ARGS(reset);