diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-29 13:03:15 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-11-29 13:03:15 (GMT) |
commit | eca25ffa988872763ee91c496912bf2d22a0819f (patch) | |
tree | 327d2fb917db2580f8f17afb3d093f83a87f35c0 /generic/tclRegexp.h | |
parent | b91af81bc4ee0138c07c96e938c4878e0a8c06d9 (diff) | |
download | tcl-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.h | 2 |
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; |