From f614fc68984b2d7fce3f275b8106955b5d910472 Mon Sep 17 00:00:00 2001 From: Bob Weinand Date: Fri, 11 Apr 2014 10:06:17 +0200 Subject: Fix bug #66015 by reverting "Removed operations on constant arrays." --- Zend/zend.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'Zend/zend.h') diff --git a/Zend/zend.h b/Zend/zend.h index 82e81370e8..9e79833cd7 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -589,14 +589,11 @@ typedef int (*zend_write_func_t)(const char *str, uint str_length); #define IS_STRING 6 #define IS_RESOURCE 7 #define IS_CONSTANT 8 -#define IS_CONSTANT_ARRAY 9 -#define IS_CONSTANT_AST 10 -#define IS_CALLABLE 11 +#define IS_CONSTANT_AST 9 +#define IS_CALLABLE 10 -/* Ugly hack to support constants as static array indices */ #define IS_CONSTANT_TYPE_MASK 0x00f #define IS_CONSTANT_UNQUALIFIED 0x010 -#define IS_CONSTANT_INDEX 0x080 #define IS_LEXICAL_VAR 0x020 #define IS_LEXICAL_REF 0x040 #define IS_CONSTANT_IN_NAMESPACE 0x100 -- cgit v1.2.1