summaryrefslogtreecommitdiffstats
path: root/generic/tclRegexp.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-29 13:03:15 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-11-29 13:03:15 (GMT)
commit357515037a7c6dd1d3b503a06438a445992a7c26 (patch)
tree327d2fb917db2580f8f17afb3d093f83a87f35c0 /generic/tclRegexp.h
parenta435d9e14b141cab29412f38348c5b016c7672ba (diff)
downloadtcl-357515037a7c6dd1d3b503a06438a445992a7c26.zip
tcl-357515037a7c6dd1d3b503a06438a445992a7c26.tar.gz
tcl-357515037a7c6dd1d3b503a06438a445992a7c26.tar.bz2
Minor simplifications. Eliminate FUNCPRT from regexp engine. Fix compile-error (non-debug) in tclDictObj.c, from previous commit
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 3b2433e..eac0aaa 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). */
- int refCount; /* Count of number of references to this
+ unsigned int refCount; /* Count of number of references to this
* compiled regexp. */
} TclRegexp;