summaryrefslogtreecommitdiffstats
path: root/generic/tclTestObj.c
diff options
context:
space:
mode:
authornijtmans <nijtmans@noemail.net>2010-02-25 22:20:09 (GMT)
committernijtmans <nijtmans@noemail.net>2010-02-25 22:20:09 (GMT)
commitecd98056a8e9ec5093a6aed679994573205c28bb (patch)
treeffa352ca883f0018c5d14cbd41b0f6917c0a97ad /generic/tclTestObj.c
parente0f5f0782b4fd5df7cd047da9195177ccacc5ae9 (diff)
downloadtcl-ecd98056a8e9ec5093a6aed679994573205c28bb.zip
tcl-ecd98056a8e9ec5093a6aed679994573205c28bb.tar.gz
tcl-ecd98056a8e9ec5093a6aed679994573205c28bb.tar.bz2
[ tcl-Feature Requests-2958832 ] Further
speed-up of ouster-hash function. Eliminate various unnecessary (ClientData) type casts. FossilOrigin-Name: b28fef8499c8d600688681143264f48ed28a8ead
Diffstat (limited to 'generic/tclTestObj.c')
-rw-r--r--generic/tclTestObj.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/generic/tclTestObj.c b/generic/tclTestObj.c
index ec7b83b..1b33412 100644
--- a/generic/tclTestObj.c
+++ b/generic/tclTestObj.c
@@ -13,7 +13,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclTestObj.c,v 1.36 2009/11/19 21:17:36 nijtmans Exp $
+ * RCS: @(#) $Id: tclTestObj.c,v 1.37 2010/02/25 22:20:10 nijtmans Exp $
*/
#ifndef USE_TCL_STUBS
@@ -91,18 +91,18 @@ TclObjTest_Init(
}
Tcl_CreateObjCommand(interp, "testbignumobj", TestbignumobjCmd,
- (ClientData) 0, NULL);
+ NULL, NULL);
Tcl_CreateObjCommand(interp, "testbooleanobj", TestbooleanobjCmd,
- (ClientData) 0, NULL);
+ NULL, NULL);
Tcl_CreateObjCommand(interp, "testdoubleobj", TestdoubleobjCmd,
- (ClientData) 0, NULL);
+ NULL, NULL);
Tcl_CreateObjCommand(interp, "testintobj", TestintobjCmd,
- (ClientData) 0, NULL);
+ NULL, NULL);
Tcl_CreateObjCommand(interp, "testindexobj", TestindexobjCmd,
- (ClientData) 0, NULL);
- Tcl_CreateObjCommand(interp, "testobj", TestobjCmd, (ClientData) 0, NULL);
+ NULL, NULL);
+ Tcl_CreateObjCommand(interp, "testobj", TestobjCmd, NULL, NULL);
Tcl_CreateObjCommand(interp, "teststringobj", TeststringobjCmd,
- (ClientData) 0, NULL);
+ NULL, NULL);
return TCL_OK;
}