diff options
author | Nikita Popov <nikic@php.net> | 2016-12-18 17:13:21 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2016-12-21 21:19:19 +0100 |
commit | 509f26c4bbc57115466cce46e92f6fa9002e3532 (patch) | |
tree | 777a1e50eb95e36e70b1e53658e0efb6eded11dc | |
parent | ce0669c892b5007f5f0e62f0457e779874f29861 (diff) | |
download | php-git-509f26c4bbc57115466cce46e92f6fa9002e3532.tar.gz |
Drop some dead code in ext/reflection
-rw-r--r-- | ext/reflection/php_reflection.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 1c5b09d87f..2c05203938 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -69,23 +69,6 @@ PHPAPI zend_class_entry *reflection_class_constant_ptr; PHPAPI zend_class_entry *reflection_extension_ptr; PHPAPI zend_class_entry *reflection_zend_extension_ptr; -#if MBO_0 -ZEND_BEGIN_MODULE_GLOBALS(reflection) - int dummy; -ZEND_END_MODULE_GLOBALS(reflection) - -#ifdef ZTS -# define REFLECTION_G(v) \ - ZEND_TSRMG(reflection_globals_id, zend_reflection_globals*, v) -extern int reflection_globals_id; -#else -# define REFLECTION_G(v) (reflection_globals.v) -extern zend_reflection_globals reflectionglobals; -#endif - -ZEND_DECLARE_MODULE_GLOBALS(reflection) -#endif /* MBO_0 */ - /* Method macros */ #define METHOD_NOTSTATIC(ce) \ |