File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ PHP 8.2 INTERNALS UPGRADE NOTES
14
14
around zend_binary_str(n)casecmp_l() -- rather than
15
15
zend_binary_str(n)casecmp() as one would expect. Call the appropriate
16
16
wrapped function directly instead.
17
+ * Removed the (ZEND_)WRONG_PARAM_COUNT_WITH_RETVAL() macros.
17
18
18
19
========================
19
20
2. Build system changes
Original file line number Diff line number Diff line change @@ -472,10 +472,8 @@ ZEND_API const char *zend_get_type_by_const(int type);
472
472
#define ZEND_IS_METHOD_CALL () (EX(func)->common.scope != NULL)
473
473
474
474
#define WRONG_PARAM_COUNT ZEND_WRONG_PARAM_COUNT()
475
- #define WRONG_PARAM_COUNT_WITH_RETVAL (ret ) ZEND_WRONG_PARAM_COUNT_WITH_RETVAL(ret)
476
475
#define ZEND_NUM_ARGS () EX_NUM_ARGS()
477
476
#define ZEND_WRONG_PARAM_COUNT () { zend_wrong_param_count(); return; }
478
- #define ZEND_WRONG_PARAM_COUNT_WITH_RETVAL (ret ) { zend_wrong_param_count(); return ret; }
479
477
480
478
#ifndef ZEND_WIN32
481
479
#define DLEXPORT
You can’t perform that action at this time.
0 commit comments