diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-10-24 13:56:26 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-10-24 13:56:26 (GMT) |
commit | d5f679a3f608fabb7954ae203eff8f37b2e1747b (patch) | |
tree | a94e912756082a242e088430cc283e3d118f0615 /generic/tclRegexp.h | |
parent | e532a0de84ff5705795de620a0c2cbc41cb3179a (diff) | |
download | tcl-d5f679a3f608fabb7954ae203eff8f37b2e1747b.zip tcl-d5f679a3f608fabb7954ae203eff8f37b2e1747b.tar.gz tcl-d5f679a3f608fabb7954ae203eff8f37b2e1747b.tar.bz2 |
Change (internal) refCount field from TclRegexp to type size_t: this allows more references on 64-bit platforms. Remove unused macro "xxx" in regguts.h. Remove superflouous eol-space in oo.test.
Diffstat (limited to 'generic/tclRegexp.h')
-rw-r--r-- | generic/tclRegexp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclRegexp.h b/generic/tclRegexp.h index eac0aaa..a263dfd 100644 --- a/generic/tclRegexp.h +++ b/generic/tclRegexp.h @@ -37,7 +37,7 @@ typedef struct TclRegexp { * of subexpressions. */ rm_detail_t details; /* Detailed information on match (currently * used only for REG_EXPECT). */ - unsigned int refCount; /* Count of number of references to this + size_t refCount; /* Count of number of references to this * compiled regexp. */ } TclRegexp; |