diff options
author | Dmitry Stogov <dmitry@zend.com> | 2018-07-23 15:24:07 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2018-07-23 15:24:07 +0300 |
commit | ebd1f5af3efc8134496016a0010f6bf0b7003503 (patch) | |
tree | 0fd29a1964e2b99a30817064fac645e291fde911 /sapi/phpdbg/phpdbg.h | |
parent | afc82e243cb7637e2fe0ef21fce736687c615ea2 (diff) | |
download | php-git-ebd1f5af3efc8134496016a0010f6bf0b7003503.tar.gz |
API cleanup.
Removed useless filename and lineno arguments, used in DEBUG build.
The patch doesn't break source compatibility of public API (only binary compatibility).
Diffstat (limited to 'sapi/phpdbg/phpdbg.h')
-rw-r--r-- | sapi/phpdbg/phpdbg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/phpdbg/phpdbg.h b/sapi/phpdbg/phpdbg.h index 7560eec7e0..6d78033b5c 100644 --- a/sapi/phpdbg/phpdbg.h +++ b/sapi/phpdbg/phpdbg.h @@ -76,10 +76,10 @@ #undef zend_hash_str_add #ifdef PHP_WIN32 #define zend_hash_str_add(...) \ - _zend_hash_str_add(__VA_ARGS__ ZEND_FILE_LINE_CC) + zend_hash_str_add(__VA_ARGS__) #else #define zend_hash_str_add_tmp(ht, key, len, pData) \ - _zend_hash_str_add(ht, key, len, pData ZEND_FILE_LINE_CC) + zend_hash_str_add(ht, key, len, pData) #define zend_hash_str_add(...) zend_hash_str_add_tmp(__VA_ARGS__) #endif |