Skip to content

Commit 8b23c23

Browse files
author
Bulat Shakirzyanov
committed
fix implicit function declaration warning
1 parent e9706b1 commit 8b23c23

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

ext/types/collection.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,8 @@ php_cassandra_collection_properties(zval *object TSRMLS_DC)
282282
return props;
283283
}
284284

285+
int zend_compare_symbol_tables_i(HashTable *ht1, HashTable *ht2 TSRMLS_DC);
286+
285287
static int
286288
php_cassandra_collection_compare(zval *obj1, zval *obj2 TSRMLS_DC)
287289
{

ext/types/map.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,8 @@ php_cassandra_map_properties(zval *object TSRMLS_DC)
433433
return props;
434434
}
435435

436+
int zend_compare_symbol_tables_i(HashTable *ht1, HashTable *ht2 TSRMLS_DC);
437+
436438
static int
437439
php_cassandra_map_compare(zval *obj1, zval *obj2 TSRMLS_DC)
438440
{

ext/types/set.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,8 @@ php_cassandra_set_properties(zval *object TSRMLS_DC)
266266
return props;
267267
}
268268

269+
int zend_compare_symbol_tables_i(HashTable *ht1, HashTable *ht2 TSRMLS_DC);
270+
269271
static int
270272
php_cassandra_set_compare(zval *obj1, zval *obj2 TSRMLS_DC)
271273
{

0 commit comments

Comments
 (0)