summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-06-24 11:10:30 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-06-24 11:10:30 (GMT)
commitc355f9a6cf73375f2fca0d17fb3d7ca852ca26a9 (patch)
treeb597df55815546c607433635f6bab5e54bb2147f /generic/tclCompile.h
parenta6fb6b32ca5735916db769b4030d4184ecbdfbbc (diff)
parent9c5e4541411287c33ae6727b22ec18fec6cd04fa (diff)
downloadtcl-c355f9a6cf73375f2fca0d17fb3d7ca852ca26a9.zip
tcl-c355f9a6cf73375f2fca0d17fb3d7ca852ca26a9.tar.gz
tcl-c355f9a6cf73375f2fca0d17fb3d7ca852ca26a9.tar.bz2
Merge 8.7
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r--generic/tclCompile.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h
index cd3866d..05af346 100644
--- a/generic/tclCompile.h
+++ b/generic/tclCompile.h
@@ -427,7 +427,7 @@ typedef struct ByteCode {
* procs are specific to an interpreter so the
* code emitted will depend on the
* interpreter. */
- TCL_HASH_TYPE compileEpoch; /* Value of iPtr->compileEpoch when this
+ size_t compileEpoch; /* Value of iPtr->compileEpoch when this
* ByteCode was compiled. Used to invalidate
* code when, e.g., commands with compile
* procs are redefined. */
@@ -435,11 +435,11 @@ typedef struct ByteCode {
* compiled. If the code is executed if a
* different namespace, it must be
* recompiled. */
- TCL_HASH_TYPE nsEpoch; /* Value of nsPtr->resolverEpoch when this
+ size_t nsEpoch; /* Value of nsPtr->resolverEpoch when this
* ByteCode was compiled. Used to invalidate
* code when new namespace resolution rules
* are put into effect. */
- TCL_HASH_TYPE refCount; /* Reference count: set 1 when created plus 1
+ size_t refCount; /* Reference count: set 1 when created plus 1
* for each execution of the code currently
* active. This structure can be freed when
* refCount becomes zero. */