Remove no_separation flag

This commit is contained in:
Nikita Popov 2020-07-07 09:30:24 +02:00
parent e93aca7167
commit 302933daea
27 changed files with 10 additions and 50 deletions

View file

@ -1816,7 +1816,6 @@ ZEND_METHOD(ReflectionFunction, invoke)
fci.retval = &retval;
fci.param_count = num_args;
fci.params = params;
fci.no_separation = 1;
fcc.function_handler = fptr;
fcc.called_scope = NULL;
@ -1878,7 +1877,6 @@ ZEND_METHOD(ReflectionFunction, invokeArgs)
fci.retval = &retval;
fci.param_count = argc;
fci.params = params;
fci.no_separation = 1;
fcc.function_handler = fptr;
fcc.called_scope = NULL;
@ -3206,7 +3204,6 @@ static void reflection_method_invoke(INTERNAL_FUNCTION_PARAMETERS, int variadic)
fci.retval = &retval;
fci.param_count = argc;
fci.params = params;
fci.no_separation = 1;
fcc.function_handler = mptr;
fcc.called_scope = intern->ce;