summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2022-03-29 10:37:35 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2022-03-29 10:37:35 (GMT)
commit432fbdc37562b215a1955ebc8c5af4aadd24315a (patch)
tree9d2b39b23907040168cf9a5971250dfb2288a196 /generic/tclCompile.h
parent52015b6d7bd6f89ac7083fff270c15e7df5b19ec (diff)
downloadtcl-432fbdc37562b215a1955ebc8c5af4aadd24315a.zip
tcl-432fbdc37562b215a1955ebc8c5af4aadd24315a.tar.gz
tcl-432fbdc37562b215a1955ebc8c5af4aadd24315a.tar.bz2
More progress
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r--generic/tclCompile.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h
index fc5b498..62b6416 100644
--- a/generic/tclCompile.h
+++ b/generic/tclCompile.h
@@ -132,7 +132,7 @@ typedef struct ExceptionAux {
* if there are no open expansions between the
* looping level and the point of jump
* issue. */
- int numBreakTargets; /* The number of [break]s that want to be
+ size_t numBreakTargets; /* The number of [break]s that want to be
* targeted to the place where this loop
* exception will be bound to. */
unsigned int *breakTargets; /* The offsets of the INST_JUMP4 instructions
@@ -141,8 +141,8 @@ typedef struct ExceptionAux {
* TclFixupForwardJump) can cause the contents
* of this array to be updated. When
* numBreakTargets==0, this is NULL. */
- int allocBreakTargets; /* The size of the breakTargets array. */
- int numContinueTargets; /* The number of [continue]s that want to be
+ size_t allocBreakTargets; /* The size of the breakTargets array. */
+ size_t numContinueTargets; /* The number of [continue]s that want to be
* targeted to the place where this loop
* exception will be bound to. */
unsigned int *continueTargets; /* The offsets of the INST_JUMP4 instructions
@@ -151,7 +151,7 @@ typedef struct ExceptionAux {
* TclFixupForwardJump) can cause the contents
* of this array to be updated. When
* numContinueTargets==0, this is NULL. */
- int allocContinueTargets; /* The size of the continueTargets array. */
+ size_t allocContinueTargets; /* The size of the continueTargets array. */
} ExceptionAux;
/*