summaryrefslogtreecommitdiff
path: root/Zend/zend_execute.h
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-07-15 09:51:14 +0200
committerNikita Popov <nikita.ppv@gmail.com>2020-07-15 09:51:51 +0200
commitf60cf0cfe7fd335718ba5c24bbd824f157e9ea49 (patch)
tree369755971adea3aeb18b8371989848f9bbb6105e /Zend/zend_execute.h
parent3804858c47409c9a90935dd112663b94ea917658 (diff)
downloadphp-git-f60cf0cfe7fd335718ba5c24bbd824f157e9ea49.tar.gz
Remove type argument from zend_get_zval_ptr
As pointed out by Levi, this is unused, and we already changed the signature of this function for PHP 8.
Diffstat (limited to 'Zend/zend_execute.h')
-rw-r--r--Zend/zend_execute.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h
index 84fd23e610..827b735c70 100644
--- a/Zend/zend_execute.h
+++ b/Zend/zend_execute.h
@@ -327,7 +327,7 @@ ZEND_API zval* zend_get_compiled_variable_value(const zend_execute_data *execute
ZEND_API int zend_set_user_opcode_handler(zend_uchar opcode, user_opcode_handler_t handler);
ZEND_API user_opcode_handler_t zend_get_user_opcode_handler(zend_uchar opcode);
-ZEND_API zval *zend_get_zval_ptr(const zend_op *opline, int op_type, const znode_op *node, const zend_execute_data *execute_data, int type);
+ZEND_API zval *zend_get_zval_ptr(const zend_op *opline, int op_type, const znode_op *node, const zend_execute_data *execute_data);
ZEND_API void zend_clean_and_cache_symbol_table(zend_array *symbol_table);
ZEND_API void zend_free_compiled_variables(zend_execute_data *execute_data);