diff options
author | Andi Gutmans <andi@php.net> | 1999-10-01 23:31:39 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 1999-10-01 23:31:39 +0000 |
commit | 86357a9c27300d7fdbd3bc712235719c67dd3d8a (patch) | |
tree | e2bdaba11bb5af5706f080e4800f66cce5f6f0de /Zend/zend_operators.h | |
parent | 4dd47ffbc1f263afca85cea8c68756d9c19783f1 (diff) | |
download | php-git-86357a9c27300d7fdbd3bc712235719c67dd3d8a.tar.gz |
- Move is_ref back to being an unsigned char and not a bit field.
Diffstat (limited to 'Zend/zend_operators.h')
-rw-r--r-- | Zend/zend_operators.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h index ad3b69cf93..d0d71e97ab 100644 --- a/Zend/zend_operators.h +++ b/Zend/zend_operators.h @@ -72,7 +72,7 @@ ZEND_API void zendi_smart_strcmp(zval *result, zval *s1, zval *s2); #define convert_to_long_ex(ppzv) \ if ((*ppzv)->type!=IS_LONG) { \ - if (!(*ppzv)->EA.is_ref) { \ + if (!(*ppzv)->is_ref) { \ SEPARATE_ZVAL(ppzv); \ } \ convert_to_long(*ppzv); \ @@ -80,7 +80,7 @@ ZEND_API void zendi_smart_strcmp(zval *result, zval *s1, zval *s2); #define convert_to_double_ex(ppzv) \ if ((*ppzv)->type!=IS_DOUBLE) { \ - if (!(*ppzv)->EA.is_ref) { \ + if (!(*ppzv)->is_ref) { \ SEPARATE_ZVAL(ppzv); \ } \ convert_to_double(*ppzv); \ @@ -88,7 +88,7 @@ ZEND_API void zendi_smart_strcmp(zval *result, zval *s1, zval *s2); #define convert_to_string_ex(ppzv) \ if ((*ppzv)->type!=IS_STRING) { \ - if (!(*ppzv)->EA.is_ref) { \ + if (!(*ppzv)->is_ref) { \ SEPARATE_ZVAL(ppzv); \ } \ convert_to_string(*ppzv); \ @@ -96,7 +96,7 @@ ZEND_API void zendi_smart_strcmp(zval *result, zval *s1, zval *s2); #define convert_to_array_ex(ppzv) \ if ((*ppzv)->type!=IS_ARRAY) { \ - if (!(*ppzv)->EA.is_ref) { \ + if (!(*ppzv)->is_ref) { \ SEPARATE_ZVAL(ppzv); \ } \ convert_to_array(*ppzv); \ @@ -104,7 +104,7 @@ ZEND_API void zendi_smart_strcmp(zval *result, zval *s1, zval *s2); #define convert_to_object_ex(ppzv) \ if ((*ppzv)->type!=IS_OBJECT) { \ - if (!(*ppzv)->EA.is_ref) { \ + if (!(*ppzv)->is_ref) { \ SEPARATE_ZVAL(ppzv); \ } \ convert_to_object(*ppzv); \ @@ -112,7 +112,7 @@ ZEND_API void zendi_smart_strcmp(zval *result, zval *s1, zval *s2); #define convert_to_boolean_ex(ppzv) \ if ((*ppzv)->type!=IS_BOOL) { \ - if (!(*ppzv)->EA.is_ref) { \ + if (!(*ppzv)->is_ref) { \ SEPARATE_ZVAL(ppzv); \ } \ convert_to_boolean(*ppzv); \ |