about summary refs log tree commit diff
path: root/src/libcore/hash
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2018-12-20 22:49:32 +0100
committerRalf Jung <post@ralfj.de>2019-01-28 10:39:49 +0100
commitc775c2fe969219b9631e295e6ef7d05a3ea07e65 (patch)
tree7900067981205b66ed16dd54074e5a019c5f764b /src/libcore/hash
parentcc4d1e5bb0c256c352a4d01112a55d93dcfa6081 (diff)
downloadrust-c775c2fe969219b9631e295e6ef7d05a3ea07e65.tar.gz
rust-c775c2fe969219b9631e295e6ef7d05a3ea07e65.zip
libcore: remove unneeded allow(deprecated)
Diffstat (limited to 'src/libcore/hash')
-rw-r--r--src/libcore/hash/sip.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/hash/sip.rs b/src/libcore/hash/sip.rs
index 3377b831a9d..18f09f4c5dd 100644
--- a/src/libcore/hash/sip.rs
+++ b/src/libcore/hash/sip.rs
@@ -1,6 +1,6 @@
 //! An implementation of SipHash.
 
-#![allow(deprecated)]
+#![allow(deprecated)] // the types in this module are deprecated
 
 use marker::PhantomData;
 use ptr;