We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe28197 commit a6c8db0Copy full SHA for a6c8db0
Zend/zend_compile.h
@@ -498,14 +498,14 @@ typedef struct _zend_class_constant {
498
#define ZEND_CLASS_CONST_FLAGS(c) Z_CONSTANT_FLAGS((c)->value)
499
500
#if __STDC_VERSION__ >= 202311L
501
-enum zend_function_type: uint8_t {
+enum _zend_function_type: uint8_t {
502
ZEND_INTERNAL_FUNCTION = 1,
503
ZEND_USER_FUNCTION = 2,
504
ZEND_EVAL_CODE = 4,
505
};
506
-typedef enum zend_function_type zend_function_type;
+typedef enum _zend_function_type zend_function_type;
507
#else
508
-enum zend_function_type {
+enum _zend_function_type {
509
510
511
0 commit comments