diff options
author | Dmitry Stogov <dmitry@zend.com> | 2019-03-12 13:44:05 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2019-03-12 13:44:05 +0300 |
commit | 5aa1176238f41097ea7295ba6911aa19ae7c1021 (patch) | |
tree | d1536f4445a18b91295cda84dd30378048eb0fd0 /ext/simplexml | |
parent | c48f5fe841987f9c43111565e9a259698539b9ec (diff) | |
download | php-git-5aa1176238f41097ea7295ba6911aa19ae7c1021.tar.gz |
Cleanup unused module globals
Diffstat (limited to 'ext/simplexml')
-rw-r--r-- | ext/simplexml/php_simplexml.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/simplexml/php_simplexml.h b/ext/simplexml/php_simplexml.h index c3c3c2f1b3..09752229ac 100644 --- a/ext/simplexml/php_simplexml.h +++ b/ext/simplexml/php_simplexml.h @@ -69,12 +69,6 @@ typedef struct { zend_object zo; } php_sxe_object; -#ifdef ZTS -#define SIMPLEXML_G(v) TSRMG(simplexml_globals_id, zend_simplexml_globals *, v) -#else -#define SIMPLEXML_G(v) (simplexml_globals.v) -#endif - #ifdef PHP_WIN32 # ifdef PHP_SIMPLEXML_EXPORTS # define PHP_SXE_API __declspec(dllexport) |