@@ -235,7 +235,7 @@ static zend_always_inline bool php_dom_is_cache_tag_stale_from_doc_ptr(const php
235
235
return php_libxml_is_cache_tag_stale (cache_tag , & doc_ptr -> cache_tag );
236
236
}
237
237
238
- static zend_always_inline bool php_dom_is_cache_tag_stale_from_node (const php_libxml_cache_tag * cache_tag , const xmlNodePtr node )
238
+ static zend_always_inline bool php_dom_is_cache_tag_stale_from_node (const php_libxml_cache_tag * cache_tag , const xmlNode * node )
239
239
{
240
240
ZEND_ASSERT (node != NULL );
241
241
php_libxml_node_ptr * _private = node -> _private ;
@@ -249,7 +249,7 @@ static zend_always_inline bool php_dom_is_cache_tag_stale_from_node(const php_li
249
249
return php_dom_is_cache_tag_stale_from_doc_ptr (cache_tag , object_private -> document );
250
250
}
251
251
252
- static zend_always_inline void php_dom_mark_cache_tag_up_to_date_from_node (php_libxml_cache_tag * cache_tag , const xmlNodePtr node )
252
+ static zend_always_inline void php_dom_mark_cache_tag_up_to_date_from_node (php_libxml_cache_tag * cache_tag , const xmlNode * node )
253
253
{
254
254
ZEND_ASSERT (cache_tag != NULL );
255
255
php_libxml_node_ptr * _private = node -> _private ;
@@ -261,7 +261,7 @@ static zend_always_inline void php_dom_mark_cache_tag_up_to_date_from_node(php_l
261
261
}
262
262
}
263
263
264
- static zend_always_inline void php_dom_mark_cache_tag_up_to_date_from_doc_ref (php_libxml_cache_tag * cache_tag , php_libxml_ref_obj * document )
264
+ static zend_always_inline void php_dom_mark_cache_tag_up_to_date_from_doc_ref (php_libxml_cache_tag * cache_tag , const php_libxml_ref_obj * document )
265
265
{
266
266
ZEND_ASSERT (cache_tag != NULL );
267
267
ZEND_ASSERT (document != NULL );
0 commit comments