summaryrefslogtreecommitdiff
path: root/ext/pdo_odbc
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2019-03-12 13:44:25 +0300
committerDmitry Stogov <dmitry@zend.com>2019-03-12 13:44:25 +0300
commitc56bd7e220dacd1bf65c08d6e1c4ab406b160993 (patch)
tree231ea4108f323470ccefde2b4df2289fb35f8a7b /ext/pdo_odbc
parent403033db5b2e2b3bdf198c5f44cc08d9655fd69a (diff)
parent5aa1176238f41097ea7295ba6911aa19ae7c1021 (diff)
downloadphp-git-c56bd7e220dacd1bf65c08d6e1c4ab406b160993.tar.gz
Merge branch 'PHP-7.4'
* PHP-7.4: Cleanup unused module globals
Diffstat (limited to 'ext/pdo_odbc')
-rw-r--r--ext/pdo_odbc/php_pdo_odbc.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/ext/pdo_odbc/php_pdo_odbc.h b/ext/pdo_odbc/php_pdo_odbc.h
index 10a11d56a4..9cc748715e 100644
--- a/ext/pdo_odbc/php_pdo_odbc.h
+++ b/ext/pdo_odbc/php_pdo_odbc.h
@@ -35,20 +35,4 @@ PHP_RINIT_FUNCTION(pdo_odbc);
PHP_RSHUTDOWN_FUNCTION(pdo_odbc);
PHP_MINFO_FUNCTION(pdo_odbc);
-/*
- Declare any global variables you may need between the BEGIN
- and END macros here:
-
-ZEND_BEGIN_MODULE_GLOBALS(pdo_odbc)
- long global_value;
- char *global_string;
-ZEND_END_MODULE_GLOBALS(pdo_odbc)
-*/
-
-#ifdef ZTS
-#define PDO_ODBC_G(v) TSRMG(pdo_odbc_globals_id, zend_pdo_odbc_globals *, v)
-#else
-#define PDO_ODBC_G(v) (pdo_odbc_globals.v)
-#endif
-
#endif /* PHP_PDO_ODBC_H */