mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Add parenthesis to macro arguments in internal_helpers.h
This commit is contained in:
parent
3303c15754
commit
ae0ba1a5c6
1 changed files with 2 additions and 2 deletions
|
@ -18,8 +18,8 @@
|
|||
#define DOM_INTERNAL_HELPERS
|
||||
|
||||
/* We're using the type flags of the zval to store an extra flag. */
|
||||
#define DOM_Z_OWNED(z, v) ZVAL_PTR(z, (void *) v)
|
||||
#define DOM_Z_UNOWNED(z, v) ZVAL_INDIRECT(z, (void *) v)
|
||||
#define DOM_Z_OWNED(z, v) ZVAL_PTR(z, (void *) (v))
|
||||
#define DOM_Z_UNOWNED(z, v) ZVAL_INDIRECT(z, (void *) (v))
|
||||
#define DOM_Z_IS_OWNED(z) (Z_TYPE_P(z) == IS_PTR)
|
||||
|
||||
#ifdef DOM_CE_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue