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)
commiteca25ffa988872763ee91c496912bf2d22a0819f (patch)
tree327d2fb917db2580f8f17afb3d093f83a87f35c0 /generic/tclRegexp.h
parentb91af81bc4ee0138c07c96e938c4878e0a8c06d9 (diff)
downloadtcl-eca25ffa988872763ee91c496912bf2d22a0819f.zip
tcl-eca25ffa988872763ee91c496912bf2d22a0819f.tar.gz
tcl-eca25ffa988872763ee91c496912bf2d22a0819f.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;