summaryrefslogtreecommitdiff
path: root/Zend/zend_operators.h
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2021-01-15 10:42:11 +0100
committerNikita Popov <nikita.ppv@gmail.com>2021-01-15 10:43:26 +0100
commit058756b3bb05bcec19ae1aaf1b4946669b11c997 (patch)
tree9a0a4e5d557a4dd013211ed724d7be4c12665e12 /Zend/zend_operators.h
parent0ec34da8e09854c53f0d7bad54fc3ee39bc64aeb (diff)
downloadphp-git-058756b3bb05bcec19ae1aaf1b4946669b11c997.tar.gz
Remove the convert_to_long_base function
This function is unused in php-src, and has somewhat dubious semantics, especially since we switched convert_to_long to not use strtol for the base 10 case. If you want to convert strings from a different base, use ZEND_STRTOL directly.
Diffstat (limited to 'Zend/zend_operators.h')
-rw-r--r--Zend/zend_operators.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h
index b129a15441..1d84a9d378 100644
--- a/Zend/zend_operators.h
+++ b/Zend/zend_operators.h
@@ -262,7 +262,6 @@ ZEND_API void ZEND_FASTCALL convert_scalar_to_number(zval *op);
ZEND_API void ZEND_FASTCALL _convert_to_string(zval *op);
ZEND_API void ZEND_FASTCALL convert_to_long(zval *op);
ZEND_API void ZEND_FASTCALL convert_to_double(zval *op);
-ZEND_API void ZEND_FASTCALL convert_to_long_base(zval *op, int base);
ZEND_API void ZEND_FASTCALL convert_to_null(zval *op);
ZEND_API void ZEND_FASTCALL convert_to_boolean(zval *op);
ZEND_API void ZEND_FASTCALL convert_to_array(zval *op);