diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-07-12 13:44:26 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-07-12 13:44:26 (GMT) |
commit | b11d2bb62de6e5fe26ac66bcd0f447afcfd00609 (patch) | |
tree | ed2a2c3cdb9d99794e2c09daee427b78362051b3 /doc/Hash.3 | |
parent | e0a474120456c4582b0dc3e64f1f21356a8e5c9c (diff) | |
download | tcl-b11d2bb62de6e5fe26ac66bcd0f447afcfd00609.zip tcl-b11d2bb62de6e5fe26ac66bcd0f447afcfd00609.tar.gz tcl-b11d2bb62de6e5fe26ac66bcd0f447afcfd00609.tar.bz2 |
Make hash type changable by compiling with -DTCL_HASH_TYPE=size_t (for example). Default (unsigned) cannot be changed in Tcl 8.x, that must wait until Tcl 9.
Diffstat (limited to 'doc/Hash.3')
-rw-r--r-- | doc/Hash.3 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -281,7 +281,7 @@ The \fIhashKeyProc\fR member contains the address of a function called to calculate a hash value for the key. .PP .CS -typedef unsigned int \fBTcl_HashKeyProc\fR( +typedef TCL_HASH_TYPE \fBTcl_HashKeyProc\fR( Tcl_HashTable *\fItablePtr\fR, void *\fIkeyPtr\fR); .CE |