summaryrefslogtreecommitdiffstats
path: root/generic/tclHash.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-09-14 08:05:32 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-09-14 08:05:32 (GMT)
commite5cd963c59b6bd893f48e2ce7f72b6b7dc19bb76 (patch)
tree4a917e616035a428c6c5aea0604a5fb4c1c8a5ef /generic/tclHash.c
parent8b01a846c357441f7db46601c5606ac57e79e259 (diff)
downloadtcl-e5cd963c59b6bd893f48e2ce7f72b6b7dc19bb76.zip
tcl-e5cd963c59b6bd893f48e2ce7f72b6b7dc19bb76.tar.gz
tcl-e5cd963c59b6bd893f48e2ce7f72b6b7dc19bb76.tar.bz2
Remove some unnecessary #if 0 sections. Fix comments and panic messages. No functional changes.
Diffstat (limited to 'generic/tclHash.c')
-rw-r--r--generic/tclHash.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/generic/tclHash.c b/generic/tclHash.c
index 78ad514..3c820c0 100644
--- a/generic/tclHash.c
+++ b/generic/tclHash.c
@@ -46,19 +46,6 @@ static int CompareArrayKeys(void *keyPtr, Tcl_HashEntry *hPtr);
static TCL_HASH_TYPE HashArrayKey(Tcl_HashTable *tablePtr, void *keyPtr);
/*
- * Prototypes for the one word hash key methods. Not actually declared because
- * this is a critical path that is implemented in the core hash table access
- * function.
- */
-
-#if 0
-static Tcl_HashEntry * AllocOneWordEntry(Tcl_HashTable *tablePtr,
- void *keyPtr);
-static int CompareOneWordKeys(void *keyPtr, Tcl_HashEntry *hPtr);
-static unsigned int HashOneWordKey(Tcl_HashTable *tablePtr, void *keyPtr);
-#endif
-
-/*
* Prototypes for the string hash key methods.
*/