diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-04-21 20:32:26 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-04-21 20:32:26 (GMT) |
commit | b58023ffa18027e959e9f2e56118606adfe8343a (patch) | |
tree | 0bd2e7b0c71c6c5d08d8ac433c7af692a6eaa4a5 /generic/tclObj.c | |
parent | 1fe7d754ed84d81bf0fb2928b1bccfc96348bd12 (diff) | |
download | tcl-b58023ffa18027e959e9f2e56118606adfe8343a.zip tcl-b58023ffa18027e959e9f2e56118606adfe8343a.tar.gz tcl-b58023ffa18027e959e9f2e56118606adfe8343a.tar.bz2 |
Since Tcl_GetSizeIntFromObj is the same as Tcl_GetIntFromObj (in 8.7), it's not worth to spend a stub entry for it
Diffstat (limited to 'generic/tclObj.c')
-rw-r--r-- | generic/tclObj.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/generic/tclObj.c b/generic/tclObj.c index 93e3a08..94cf376 100644 --- a/generic/tclObj.c +++ b/generic/tclObj.c @@ -3551,31 +3551,6 @@ TclGetWideBitsFromObj( /* *---------------------------------------------------------------------- * - * Tcl_GetSizeIntFromObj -- - * - * Attempt to return a Tcl_Size from the Tcl object "objPtr". - * - * Results: - * TCL_OK - the converted Tcl_Size value is stored in *sizePtr - * TCL_ERROR - the error message is stored in interp - * - * Side effects: - * The function may free up any existing internal representation. - * - *---------------------------------------------------------------------- - */ -int -Tcl_GetSizeIntFromObj( - Tcl_Interp *interp, /* Used for error reporting if not NULL. */ - Tcl_Obj *objPtr, /* The object from which to get a int. */ - Tcl_Size *sizePtr) /* Place to store resulting int. */ -{ - return Tcl_GetIntFromObj(interp, objPtr, sizePtr); -} - -/* - *---------------------------------------------------------------------- - * * FreeBignum -- * * This function frees the internal rep of a bignum. |