diff options
author | Nikita Popov <nikic@php.net> | 2016-01-30 14:39:55 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2016-01-30 14:53:00 +0100 |
commit | 2eb4728611ac9ff6aa77fece737470beabe1db62 (patch) | |
tree | 6af969cd98dbe45af011155ad6bc713e25400d5e /ext/mysqli/mysqli_priv.h | |
parent | 5c327d7f5c040ac3d3655b2adeab2fd6910a784d (diff) | |
download | php-git-2eb4728611ac9ff6aa77fece737470beabe1db62.tar.gz |
Remove HAVE_SPL checks
SPL is always built.
Also clean up spl_ce_RuntimeException handling in PDO.
Diffstat (limited to 'ext/mysqli/mysqli_priv.h')
-rw-r--r-- | ext/mysqli/mysqli_priv.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/mysqli/mysqli_priv.h b/ext/mysqli/mysqli_priv.h index 0a1122a836..c34049c89e 100644 --- a/ext/mysqli/mysqli_priv.h +++ b/ext/mysqli/mysqli_priv.h @@ -78,10 +78,6 @@ extern void php_mysqli_report_error(const char *sqlstate, int errorno, const cha extern void php_mysqli_report_index(const char *query, unsigned int status); extern void php_mysqli_throw_sql_exception(char *sqlstate, int errorno, char *format, ...); -#ifdef HAVE_SPL -extern PHPAPI zend_class_entry *spl_ce_RuntimeException; -#endif - #define PHP_MYSQLI_EXPORT(__type) PHP_MYSQLI_API __type PHP_MYSQLI_EXPORT(zend_object *) mysqli_objects_new(zend_class_entry *); |