mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Convert ext/xml fields from int to bool (#12497)
This commit is contained in:
parent
046d7f95f1
commit
6b73fcc2b3
1 changed files with 4 additions and 4 deletions
|
@ -61,7 +61,6 @@ ZEND_DECLARE_MODULE_GLOBALS(xml)
|
|||
#define XML(v) ZEND_MODULE_GLOBALS_ACCESSOR(xml, v)
|
||||
|
||||
typedef struct {
|
||||
int case_folding;
|
||||
XML_Parser parser;
|
||||
XML_Char *target_encoding;
|
||||
|
||||
|
@ -88,10 +87,11 @@ typedef struct {
|
|||
int curtag;
|
||||
zval *ctag;
|
||||
char **ltags;
|
||||
int lastwasopen;
|
||||
int skipwhite;
|
||||
int isparsing;
|
||||
bool lastwasopen;
|
||||
bool skipwhite;
|
||||
bool isparsing;
|
||||
bool parsehuge;
|
||||
bool case_folding;
|
||||
|
||||
XML_Char *baseURI;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue