summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.h
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-02-06 10:45:49 +0100
committerNikita Popov <nikita.ppv@gmail.com>2020-02-06 10:45:49 +0100
commitf57f0920fde087ba8fa60ebc11e3646bfb4cf50f (patch)
treef100cc65080a754e820572186725f7a2bbb27d82 /Zend/zend_compile.h
parent4f5f72c7afa18a036bcd2e510141853e9ef143fe (diff)
downloadphp-git-f57f0920fde087ba8fa60ebc11e3646bfb4cf50f.tar.gz
Remove ZEND_ACC_IMPLEMENTS_TRAITS flag
This is equivalent to checking ce->num_traits.
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r--Zend/zend_compile.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h
index 8df711b2a7..97488a5e93 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -229,7 +229,7 @@ typedef struct _zend_oparray_context {
/* op_array or class is preloaded | | | */
#define ZEND_ACC_PRELOADED (1 << 10) /* X | X | | */
/* | | | */
-/* Class Flags (unused: 13, 24...) | | | */
+/* Class Flags (unused: 13, 15, 24...) | | | */
/* =========== | | | */
/* | | | */
/* Special class types | | | */
@@ -254,9 +254,6 @@ typedef struct _zend_oparray_context {
/* Class implements interface(s) | | | */
#define ZEND_ACC_IMPLEMENT_INTERFACES (1 << 14) /* X | | | */
/* | | | */
-/* Class uses trait(s) | | | */
-#define ZEND_ACC_IMPLEMENT_TRAITS (1 << 15) /* X | | | */
-/* | | | */
/* User class has methods with static variables | | | */
#define ZEND_HAS_STATIC_IN_METHODS (1 << 16) /* X | | | */
/* | | | */