summaryrefslogtreecommitdiffstats
path: root/generic/tclRegexp.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-10-24 13:56:26 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-10-24 13:56:26 (GMT)
commitd5f679a3f608fabb7954ae203eff8f37b2e1747b (patch)
treea94e912756082a242e088430cc283e3d118f0615 /generic/tclRegexp.h
parente532a0de84ff5705795de620a0c2cbc41cb3179a (diff)
downloadtcl-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.h2
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;