diff options
author | Araq <rumpf_a@web.de> | 2018-05-04 14:03:16 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-05-05 21:45:07 +0200 |
commit | bbb0fd4eb734ed1a0445865077c27b05b46d0cbd (patch) | |
tree | 6a3fd735f1d9f39a4f1610d370d572b7826bafbe /lib/pure/hashes.nim | |
parent | 608017801d3625dc8c7991073a0ef84440314c24 (diff) | |
download | Nim-bbb0fd4eb734ed1a0445865077c27b05b46d0cbd.tar.gz |
remove deprecated stuff from the stdlib; introduce better deprecation warnings
Diffstat (limited to 'lib/pure/hashes.nim')
-rw-r--r-- | lib/pure/hashes.nim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/pure/hashes.nim b/lib/pure/hashes.nim index b015ed311..6535bb0d3 100644 --- a/lib/pure/hashes.nim +++ b/lib/pure/hashes.nim @@ -45,7 +45,6 @@ type Hash* = int ## a hash value; hash tables using these values should ## always have a size of a power of two and can use the ``and`` ## operator instead of ``mod`` for truncation of the hash value. -{.deprecated: [THash: Hash].} proc `!&`*(h: Hash, val: int): Hash {.inline.} = ## mixes a hash value `h` with `val` to produce a new hash value. This is |