diff options
| author | Anatol Belski <ab@php.net> | 2014-12-14 14:22:42 +0100 |
|---|---|---|
| committer | Anatol Belski <ab@php.net> | 2014-12-14 14:22:42 +0100 |
| commit | 7b6ed8db2fa1574cffabde7a8bc9fdc277304528 (patch) | |
| tree | 1380358aab5eae4d514ed58d47e6344ad3bc3d92 /ext/intl/formatter/formatter_class.c | |
| parent | e112f6a04e0cddc6276c426c09c0249201878f5a (diff) | |
| download | php-git-7b6ed8db2fa1574cffabde7a8bc9fdc277304528.tar.gz | |
almost all the replacements of TSRMLS_* are done
Some places have to be yet touched as they use different/custom
macros namings for the same. Also some places in the code became
redundant now, this is the next task. To name some: ext/mysqlnd,
sapi/embed, ext/curl and some smaller places here and there.
Diffstat (limited to 'ext/intl/formatter/formatter_class.c')
| -rw-r--r-- | ext/intl/formatter/formatter_class.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/intl/formatter/formatter_class.c b/ext/intl/formatter/formatter_class.c index aa8844cca0..935c51a955 100644 --- a/ext/intl/formatter/formatter_class.c +++ b/ext/intl/formatter/formatter_class.c @@ -34,9 +34,7 @@ static zend_object_handlers NumberFormatter_handlers; */ /* {{{ NumberFormatter_objects_dtor */ -static void NumberFormatter_object_dtor( - zend_object *object - TSRMLS_DC ) +static void NumberFormatter_object_dtor(zend_object *object) { zend_objects_destroy_object( object ); } |
