From 4cb97fa3b9869883a645e6ef807965c570570afa Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Tue, 11 Dec 2001 18:46:43 +0000 Subject: - Rename zend_class_entry.constants -> zend_class_entry.constants_table --- Zend/zend_opcode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Zend/zend_opcode.c') 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; } -- cgit v1.2.1