summaryrefslogtreecommitdiff
path: root/regcomp.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-11-26 23:01:46 +0000
committerNicholas Clark <nick@ccl4.org>2006-11-26 23:01:46 +0000
commit3251b6533b8ccfabab55365b302970011d85066a (patch)
tree13a0462c78f9010f12c30f1c8050d26de71e2ed3 /regcomp.h
parent23eab42ccdcdf01b414e4c1728d8f919b2705614 (diff)
downloadperl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/regcomp.h b/regcomp.h
index f591726800..4ae26594f0 100644
--- a/regcomp.h
+++ b/regcomp.h
@@ -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;