diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-09-14 08:06:34 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-09-14 08:06:34 (GMT) |
commit | a82dbfea9fc1ba0657969ffc32386b6d3133e8ac (patch) | |
tree | 8cb83175f40cffd4deb41fb2785b5e76b5441b3c /generic | |
parent | 863d95fe6ceac578432fa2247fb286394f208f07 (diff) | |
parent | e5cd963c59b6bd893f48e2ce7f72b6b7dc19bb76 (diff) | |
download | tcl-a82dbfea9fc1ba0657969ffc32386b6d3133e8ac.zip tcl-a82dbfea9fc1ba0657969ffc32386b6d3133e8ac.tar.gz tcl-a82dbfea9fc1ba0657969ffc32386b6d3133e8ac.tar.bz2 |
merge trunk
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclHash.c | 13 | ||||
-rw-r--r-- | generic/tclTomMath.h | 2 |
2 files changed, 1 insertions, 14 deletions
diff --git a/generic/tclHash.c b/generic/tclHash.c index 5f7908e..bb899de 100644 --- a/generic/tclHash.c +++ b/generic/tclHash.c @@ -39,19 +39,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. */ diff --git a/generic/tclTomMath.h b/generic/tclTomMath.h index 2ce8194..f110490 100644 --- a/generic/tclTomMath.h +++ b/generic/tclTomMath.h @@ -27,7 +27,7 @@ extern "C" { #endif /* detect 64-bit mode if possible */ -#if defined(NEVER) +#if defined(NEVER) /* 128-bit ints fail in too many places */ #if !(defined(MP_32BIT) || defined(MP_16BIT) || defined(MP_8BIT)) #define MP_64BIT #endif |