1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-25 12:26:40 +02:00

php: fix compilation warning about unused arguments

This commit is contained in:
Sébastien Helleu
2022-06-30 20:35:59 +02:00
parent 24fe646c4e
commit 3a0e54d236
+4
View File
@@ -5447,6 +5447,10 @@ static void
forget_hash_entry (HashTable *ht, INTERNAL_FUNCTION_PARAMETERS)
{
#if PHP_VERSION_ID >= 80000
/* make C compiler happy */
(void) ht;
(void) execute_data;
RETURN_FALSE;
#else
zend_string *class_name;