summary refs log tree commit diff
path: root/src/libstd/collections/hash/map.rs
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2015-03-10 23:13:40 -0500
committerJorge Aparicio <japaricious@gmail.com>2015-03-16 21:57:42 -0500
commit3ff84fc5fdd9509fc3ee4595fd76aa31d4815b2a (patch)
tree3e60a6c33bf7a8abea171cae5168ebb13c3cd137 /src/libstd/collections/hash/map.rs
parent8afcaabee32fb41eaf065041d7510c6762f12822 (diff)
downloadrust-3ff84fc5fdd9509fc3ee4595fd76aa31d4815b2a.tar.gz
rust-3ff84fc5fdd9509fc3ee4595fd76aa31d4815b2a.zip
impl {i,u}{8,16,32,64,size}
Diffstat (limited to 'src/libstd/collections/hash/map.rs')
-rw-r--r--src/libstd/collections/hash/map.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/collections/hash/map.rs b/src/libstd/collections/hash/map.rs
index 0892365d9d5..6f8151c2b9f 100644
--- a/src/libstd/collections/hash/map.rs
+++ b/src/libstd/collections/hash/map.rs
@@ -23,6 +23,7 @@ use hash::{Hash, SipHasher};
 use iter::{self, Iterator, ExactSizeIterator, IntoIterator, IteratorExt, FromIterator, Extend, Map};
 use marker::Sized;
 use mem::{self, replace};
+#[cfg(stage0)]
 use num::{Int, UnsignedInt};
 use ops::{Deref, FnMut, Index, IndexMut};
 use option::Option::{self, Some, None};