summaryrefslogtreecommitdiff
path: root/regcomp.h
diff options
context:
space:
mode:
authorLukas Mai <lukasmai.403@gmail.com>2023-03-14 10:20:28 +0100
committerYves Orton <demerphq@gmail.com>2023-03-14 20:05:29 +0800
commitb58c18a31b5fadf73cf761338de5b4b79c4c6805 (patch)
treee147816425668eb85df1ce2385bd94e1d0a24ff1 /regcomp.h
parentde3d2945055fb7119a5ed4225e53b6a09d1d2feb (diff)
downloadperl-b58c18a31b5fadf73cf761338de5b4b79c4c6805.tar.gz
regcomp.h: fix names of regnode_charclass union members
Diffstat (limited to 'regcomp.h')
-rw-r--r--regcomp.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/regcomp.h b/regcomp.h
index 95a76befca..ca670490ec 100644
--- a/regcomp.h
+++ b/regcomp.h
@@ -331,7 +331,7 @@ struct regnode_charclass {
U32 arg1u;
struct {
U16 arg1a;
- U16 arg2a;
+ U16 arg1b;
};
};
char bitmap[ANYOF_BITMAP_SIZE]; /* only compile-time */
@@ -347,7 +347,7 @@ struct regnode_charclass_posixl {
U32 arg1u;
struct {
U16 arg1a;
- U16 arg2a;
+ U16 arg1b;
};
};
char bitmap[ANYOF_BITMAP_SIZE]; /* both compile-time ... */
@@ -376,7 +376,7 @@ struct regnode_ssc {
U32 arg1u;
struct {
U16 arg1a;
- U16 arg2a;
+ U16 arg1b;
};
};
char bitmap[ANYOF_BITMAP_SIZE]; /* both compile-time ... */