diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-11-26 23:01:46 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-11-26 23:01:46 +0000 |
commit | 3251b6533b8ccfabab55365b302970011d85066a (patch) | |
tree | 13a0462c78f9010f12c30f1c8050d26de71e2ed3 /regcomp.h | |
parent | 23eab42ccdcdf01b414e4c1728d8f919b2705614 (diff) | |
download | perl-3251b6533b8ccfabab55365b302970011d85066a.tar.gz |
Swap _reg_ac_data.trie to U32 offset into the regdata array, as
preliminary to moving _reg_trie_data.widecharmap out too.
p4raw-id: //depot/perl@29392
Diffstat (limited to 'regcomp.h')
-rw-r--r-- | regcomp.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -549,7 +549,7 @@ struct _reg_ac_data { U32 refcount; U32 *fail; reg_trie_state *states; - reg_trie_data *trie; + U32 trie; }; typedef struct _reg_ac_data reg_ac_data; |