diff options
author | Karl Williamson <public@khwilliamson.com> | 2014-02-07 10:57:15 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2014-02-12 10:52:57 -0700 |
commit | 7e8171884c640d6ee0733dd36e244b77ee0c1188 (patch) | |
tree | d7b829b7b4342c94f56c78ffdcfa1089ebd0e7ff /regcomp.h | |
parent | a67150204eb6dd913846b8d3742550fb152461e1 (diff) | |
download | perl-7e8171884c640d6ee0733dd36e244b77ee0c1188.tar.gz |
regcomp.h: Rmv false comments
I misread the code when I added these comments
Diffstat (limited to 'regcomp.h')
-rw-r--r-- | regcomp.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -192,7 +192,7 @@ struct regnode_charclass { U8 flags; U8 type; U16 next_off; - U32 arg1; /* used as ptr in S_regclass */ + U32 arg1; char bitmap[ANYOF_BITMAP_SIZE]; /* only compile-time */ }; @@ -201,7 +201,7 @@ struct regnode_charclass_class { U8 flags; /* ANYOF_POSIXL bit must go here */ U8 type; U16 next_off; - U32 arg1; /* used as ptr in S_regclass */ + U32 arg1; char bitmap[ANYOF_BITMAP_SIZE]; /* both compile-time */ U32 classflags; /* and run-time */ }; @@ -212,7 +212,7 @@ struct regnode_charclass_posixl_fold { U8 flags; /* ANYOF_POSIXL bit must go here */ U8 type; U16 next_off; - U32 arg1; /* used as ptr in S_regclass */ + U32 arg1; char bitmap[ANYOF_BITMAP_SIZE]; /* both compile-time */ U32 classflags; /* and run-time */ SV* utf8_locale_list; /* list of code points matched by folds @@ -227,7 +227,7 @@ struct regnode_ssc { U8 flags; /* ANYOF_POSIXL bit must go here */ U8 type; U16 next_off; - U32 arg1; /* used as ptr in S_regclass */ + U32 arg1; char bitmap[ANYOF_BITMAP_SIZE]; /* both compile-time */ U32 classflags; /* and run-time */ SV* utf8_locale_list; /* list of code points matched by folds |