diff options
author | Andi Gutmans <andi@php.net> | 2001-12-11 18:46:43 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2001-12-11 18:46:43 +0000 |
commit | 4cb97fa3b9869883a645e6ef807965c570570afa (patch) | |
tree | f34be749858934f6b8fc2cbe05882b801b853e56 /Zend/zend_opcode.c | |
parent | 1dcef1e4ea8dd4678ae0558119642fdd9cb95606 (diff) | |
download | php-git-4cb97fa3b9869883a645e6ef807965c570570afa.tar.gz |
- Rename zend_class_entry.constants -> zend_class_entry.constants_table
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r-- | Zend/zend_opcode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index 788d359125..edefcafa02 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -118,7 +118,7 @@ ZEND_API void destroy_zend_class(zend_class_entry *ce) zend_hash_destroy(&ce->function_table); zend_hash_destroy(&ce->default_properties); zend_hash_destroy(&ce->static_members); - zend_hash_destroy(&ce->constants); + zend_hash_destroy(&ce->constants_table); zend_hash_destroy(&ce->class_table); break; case ZEND_INTERNAL_CLASS: @@ -127,7 +127,7 @@ ZEND_API void destroy_zend_class(zend_class_entry *ce) zend_hash_destroy(&ce->function_table); zend_hash_destroy(&ce->default_properties); zend_hash_destroy(&ce->static_members); - zend_hash_destroy(&ce->constants); + zend_hash_destroy(&ce->constants_table); zend_hash_destroy(&ce->class_table); break; } |