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/pdo/php_pdo.h | |
parent | c48f5fe841987f9c43111565e9a259698539b9ec (diff) | |
download | php-git-5aa1176238f41097ea7295ba6911aa19ae7c1021.tar.gz |
Cleanup unused module globals
Diffstat (limited to 'ext/pdo/php_pdo.h')
-rw-r--r-- | ext/pdo/php_pdo.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/ext/pdo/php_pdo.h b/ext/pdo/php_pdo.h index 50d38dba8f..27c9c984d6 100644 --- a/ext/pdo/php_pdo.h +++ b/ext/pdo/php_pdo.h @@ -49,16 +49,6 @@ PHP_MINIT_FUNCTION(pdo); PHP_MSHUTDOWN_FUNCTION(pdo); PHP_MINFO_FUNCTION(pdo); -ZEND_BEGIN_MODULE_GLOBALS(pdo) - zend_long global_value; -ZEND_END_MODULE_GLOBALS(pdo) - -#ifdef ZTS -# define PDOG(v) TSRMG(pdo_globals_id, zend_pdo_globals *, v) -#else -# define PDOG(v) (pdo_globals.v) -#endif - #define REGISTER_PDO_CLASS_CONST_LONG(const_name, value) \ zend_declare_class_constant_long(php_pdo_get_dbh_ce(), const_name, sizeof(const_name)-1, (zend_long)value); |