summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2003-11-15 23:42:42 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2003-11-15 23:42:42 (GMT)
commitecebf970f39a0b05f31b112c01c6d5b41434eed9 (patch)
tree2784dfe8da3d8d4ebd5324f90582e8c615b89383 /ChangeLog
parenta4473d0519ece391164179a6946f03562c3d04b7 (diff)
downloadtcl-ecebf970f39a0b05f31b112c01c6d5b41434eed9.zip
tcl-ecebf970f39a0b05f31b112c01c6d5b41434eed9.tar.gz
tcl-ecebf970f39a0b05f31b112c01c6d5b41434eed9.tar.bz2
Stop VC++ 5.2 warning. [Bug 842511]
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 67e8750..201daf3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2003-11-15 Donal K. Fellows <donal.k.fellows@man.ac.uk>
+
+ * generic/tclTest.c (TestHashSystemHashCmd): Removed 'const'
+ modifier from hash type structure; it should be const and the hash
+ code assumes it behaves like const, but that's not how the API is
+ defined. Like this, we are following in the same footsteps as
+ Tcl_RegisterObjType() which has the same conditions on its
+ argument. Stops VC++5.2 warning. [Bug 842511]
+
2003-11-14 Donal K. Fellows <donal.k.fellows@man.ac.uk>
* generic/tclHash.c (Tcl_DeleteHashTable,Tcl_HashStats,RebuildTable):