1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 10:16:41 +02:00

Cleanup: removed comments (zend_object.handle and zend_resource.handle are not going to be removed in PHP-7.0)

This commit is contained in:
Dmitry Stogov
2015-09-22 15:56:52 +03:00
parent 04bcce3c15
commit c49d3189b1
+2 -2
View File
@@ -274,7 +274,7 @@ typedef struct _HashTableIterator {
struct _zend_object {
zend_refcounted_h gc;
uint32_t handle; // TODO: may be removed ???
uint32_t handle;
zend_class_entry *ce;
const zend_object_handlers *handlers;
HashTable *properties;
@@ -283,7 +283,7 @@ struct _zend_object {
struct _zend_resource {
zend_refcounted_h gc;
int handle; // TODO: may be removed ???
int handle;
int type;
void *ptr;
};