diff options
author | dgp <dgp@users.sourceforge.net> | 2017-12-19 16:22:24 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2017-12-19 16:22:24 (GMT) |
commit | 77c0d1662a845a70d47d2bfbe97f8da58fbc41e1 (patch) | |
tree | ba3ec495e8d386603c7264e401d591c9188924c4 /generic/tclObj.c | |
parent | 8fa6374b22b79c0ad8b2ff6e59edb4357b825484 (diff) | |
parent | ee66488c3683d1e2b6ac36f523638c42c5649433 (diff) | |
download | tcl-77c0d1662a845a70d47d2bfbe97f8da58fbc41e1.zip tcl-77c0d1662a845a70d47d2bfbe97f8da58fbc41e1.tar.gz tcl-77c0d1662a845a70d47d2bfbe97f8da58fbc41e1.tar.bz2 |
merge 8.7
Diffstat (limited to 'generic/tclObj.c')
-rw-r--r-- | generic/tclObj.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c index 9301d9d..68d36e8 100644 --- a/generic/tclObj.c +++ b/generic/tclObj.c @@ -345,17 +345,17 @@ typedef struct ResolvedCmdName { * reference (not the namespace that contains * the referenced command). NULL if the name * is fully qualified.*/ - size_t refNsId; /* refNsPtr's unique namespace id. Used to + unsigned long refNsId; /* refNsPtr's unique namespace id. Used to * verify that refNsPtr is still valid (e.g., * it's possible that the cmd's containing * namespace was deleted and a new one created * at the same address). */ - size_t refNsCmdEpoch; /* Value of the referencing namespace's + unsigned int refNsCmdEpoch; /* Value of the referencing namespace's * cmdRefEpoch when the pointer was cached. * Before using the cached pointer, we check * if the namespace's epoch was incremented; * if so, this cached pointer is invalid. */ - size_t cmdEpoch; /* Value of the command's cmdEpoch when this + unsigned int cmdEpoch; /* Value of the command's cmdEpoch when this * pointer was cached. Before using the cached * pointer, we check if the cmd's epoch was * incremented; if so, the cmd was renamed, |