summaryrefslogtreecommitdiff
path: root/server/util_expr_parse.h
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2017-10-04 16:20:02 +0000
committerYann Ylavic <ylavic@apache.org>2017-10-04 16:20:02 +0000
commit4cd394061b68c955d399a996f879d04e927d1bdb (patch)
treea7c5b03511adbd54785a11436bbd805b5f6f198b /server/util_expr_parse.h
parente172ca33e2ab5f97b08ec96bc6d138ba021a3f02 (diff)
downloadhttpd-4cd394061b68c955d399a996f879d04e927d1bdb.tar.gz
Follow up to rr1810605 and r1811104.
Generated parser files. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1811105 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/util_expr_parse.h')
-rw-r--r--server/util_expr_parse.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/server/util_expr_parse.h b/server/util_expr_parse.h
index 3f9ee26377..396e9ecb48 100644
--- a/server/util_expr_parse.h
+++ b/server/util_expr_parse.h
@@ -59,7 +59,7 @@ extern int ap_expr_yydebug;
T_REG_MATCH = 268,
T_REG_SUBST = 269,
T_REG_FLAGS = 270,
- T_REG_REF = 271,
+ T_BACKREF = 271,
T_OP_UNARY = 272,
T_OP_BINARY = 273,
T_STR_BEGIN = 274,
@@ -84,11 +84,12 @@ extern int ap_expr_yydebug;
T_OP_STR_GT = 293,
T_OP_STR_GE = 294,
T_OP_CONCAT = 295,
- T_OP_SPLIT = 296,
- T_OP_JOIN = 297,
- T_OP_OR = 298,
- T_OP_AND = 299,
- T_OP_NOT = 300
+ T_OP_JOIN = 296,
+ T_OP_SPLIT = 297,
+ T_OP_SUB = 298,
+ T_OP_OR = 299,
+ T_OP_AND = 300,
+ T_OP_NOT = 301
};
#endif
@@ -105,7 +106,7 @@ typedef union YYSTYPE
/* Line 2053 of yacc.c */
-#line 109 "util_expr_parse.h"
+#line 110 "util_expr_parse.h"
} YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define yystype YYSTYPE /* obsolescent; will be withdrawn */