diff options
author | Nikita Popov <nikic@php.net> | 2016-07-15 23:09:18 +0200 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2016-07-16 23:16:43 +0200 |
commit | 29af302395923de0a701d61172051d3b637744c8 (patch) | |
tree | 7bbe8f618e1eccf4b655b8458779cc5751fc737f /ext/intl/msgformat/msgformat_class.c | |
parent | cbba1fff3f81bb7c4e6455d2170563e42cca559d (diff) | |
download | php-git-29af302395923de0a701d61172051d3b637744c8.tar.gz |
Remove useless dtor handlers in intl
These are only indirections to the default handler
Diffstat (limited to 'ext/intl/msgformat/msgformat_class.c')
-rw-r--r-- | ext/intl/msgformat/msgformat_class.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ext/intl/msgformat/msgformat_class.c b/ext/intl/msgformat/msgformat_class.c index 8d464c6ca4..90dac81252 100644 --- a/ext/intl/msgformat/msgformat_class.c +++ b/ext/intl/msgformat/msgformat_class.c @@ -33,13 +33,6 @@ static zend_object_handlers MessageFormatter_handlers; * Auxiliary functions needed by objects of 'MessageFormatter' class */ -/* {{{ MessageFormatter_objects_dtor */ -static void MessageFormatter_object_dtor(zend_object *object ) -{ - zend_objects_destroy_object( object ); -} -/* }}} */ - /* {{{ MessageFormatter_objects_free */ void MessageFormatter_object_free( zend_object *object ) { @@ -163,7 +156,6 @@ void msgformat_register_class( void ) sizeof MessageFormatter_handlers); MessageFormatter_handlers.offset = XtOffsetOf(MessageFormatter_object, zo); MessageFormatter_handlers.clone_obj = MessageFormatter_object_clone; - MessageFormatter_handlers.dtor_obj = MessageFormatter_object_dtor; MessageFormatter_handlers.free_obj = MessageFormatter_object_free; |