diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-03-31 21:25:13 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-03-31 21:25:13 (GMT) |
commit | 798a505ffb312727e4e5b9d44891d067aeb9172e (patch) | |
tree | 43c7a02219d76aa451177b2eacb3c80b71113646 /generic/tclCompile.h | |
parent | eda63bdf06c5012fdb062d138d9ad950d77ed25b (diff) | |
download | tcl-798a505ffb312727e4e5b9d44891d067aeb9172e.zip tcl-798a505ffb312727e4e5b9d44891d067aeb9172e.tar.gz tcl-798a505ffb312727e4e5b9d44891d067aeb9172e.tar.bz2 |
more tweaks
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 4c55065..700e3cf 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -182,7 +182,7 @@ typedef struct { typedef struct { size_t srcOffset; /* Command location to find the entry. */ - int nline; /* Number of words in the command */ + size_t nline; /* Number of words in the command */ int *line; /* Line information for all words in the * command. */ int **next; /* Transient information used by the compiler @@ -322,8 +322,8 @@ typedef struct CompileEnv { #endif LiteralEntry *literalArrayPtr; /* Points to start of LiteralEntry array. */ - size_t literalArrayNext1; /* Index of next free object array entry. */ - size_t literalArrayEnd1; /* Index just after last obj array entry. */ + size_t literalArrayNext; /* Index of next free object array entry. */ + size_t literalArrayEnd; /* Index just after last obj array entry. */ int mallocedLiteralArray; /* 1 if object array was expanded and objArray * points into the heap, else 0. */ ExceptionRange *exceptArrayPtr; @@ -333,7 +333,7 @@ typedef struct CompileEnv { * exceptArrayNext is the number of ranges and * (exceptArrayNext-1) is the index of the * current range's array entry. */ - int exceptArrayEnd; /* Index after the last ExceptionRange array + size_t exceptArrayEnd; /* Index after the last ExceptionRange array * entry. */ #if TCL_MAJOR_VERSION < 9 int mallocedExceptArray; |