diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-11-27 23:37:32 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-11-27 23:37:32 (GMT) |
commit | 82fb7b1d551b7e74efa4ee9cc814ef74fab5332c (patch) | |
tree | d95cfe374a17e826b192f03a62d9ee6a8c046e96 /generic/tclInt.h | |
parent | 513b2d50314fa22ef6df699c698ee0f05b7f59b5 (diff) | |
download | tcl-82fb7b1d551b7e74efa4ee9cc814ef74fab5332c.zip tcl-82fb7b1d551b7e74efa4ee9cc814ef74fab5332c.tar.gz tcl-82fb7b1d551b7e74efa4ee9cc814ef74fab5332c.tar.bz2 |
size_t result for lengthProc. More usage of Tcl_GetWideUIntFromObj
Diffstat (limited to 'generic/tclInt.h')
-rw-r--r-- | generic/tclInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 0ff0d8e..b5fc48e 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -1093,7 +1093,7 @@ typedef struct ActiveInterpTrace { typedef struct { /* For internal core use only */ Tcl_ObjType objType; - unsigned long long (*lengthProc)(Tcl_Obj *obj); + size_t (*lengthProc)(Tcl_Obj *obj); } TclObjTypeWithAbstractList; #define TCL_OBJTYPE_V0_1(lengthProc) (sizeof(TclObjTypeWithAbstractList)) \ }, lengthProc /* For internal core use only */ |