diff options
Diffstat (limited to 'ext/ffi/ffi.g')
-rw-r--r-- | ext/ffi/ffi.g | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/ffi/ffi.g b/ext/ffi/ffi.g index 4d7c003906..0dd94dfb6d 100644 --- a/ext/ffi/ffi.g +++ b/ext/ffi/ffi.g @@ -335,7 +335,7 @@ enumerator(zend_ffi_dcl *enum_dcl, int64_t *min, int64_t *max, int64_t *last): declarator(zend_ffi_dcl *dcl, const char **name, size_t *name_len): {zend_ffi_dcl nested_dcl = {ZEND_FFI_DCL_CHAR, 0, 0, 0, NULL};} - {zend_bool nested = 0;} + {bool nested = 0;} pointer(dcl)? ( ID(name, name_len) | "(" @@ -350,7 +350,7 @@ declarator(zend_ffi_dcl *dcl, const char **name, size_t *name_len): abstract_declarator(zend_ffi_dcl *dcl): {zend_ffi_dcl nested_dcl = {ZEND_FFI_DCL_CHAR, 0, 0, 0, NULL};} - {zend_bool nested = 0;} + {bool nested = 0;} pointer(dcl)? ( &nested_declarator_start "(" @@ -365,7 +365,7 @@ abstract_declarator(zend_ffi_dcl *dcl): parameter_declarator(zend_ffi_dcl *dcl, const char **name, size_t *name_len): {zend_ffi_dcl nested_dcl = {ZEND_FFI_DCL_CHAR, 0, 0, 0, NULL};} - {zend_bool nested = 0;} + {bool nested = 0;} pointer(dcl)? ( &nested_declarator_start "(" @@ -440,7 +440,7 @@ array_or_function_declarators(zend_ffi_dcl *dcl, zend_ffi_dcl *nested_dcl): parameter_declaration(HashTable **args): {const char *name = NULL;} {size_t name_len = 0;} - {zend_bool old_allow_vla = FFI_G(allow_vla);} + {bool old_allow_vla = FFI_G(allow_vla);} {FFI_G(allow_vla) = 1;} {zend_ffi_dcl param_dcl = ZEND_FFI_ATTR_INIT;} specifier_qualifier_list(¶m_dcl) @@ -498,7 +498,7 @@ attrib(zend_ffi_dcl *dcl): {size_t name_len;} {int n;} {zend_ffi_val val;} - {zend_bool orig_attribute_parsing;} + {bool orig_attribute_parsing;} ( ID(&name, &name_len) ( /* empty */ {zend_ffi_add_attribute(dcl, name, name_len);} |