diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2013-04-26 12:24:15 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2013-04-27 21:34:24 -0400 |
| commit | f792baba42b79711b64950c46208a1eb4b9539be (patch) | |
| tree | 246190c51857def54922ac4888e990d2e53164ca /src/libstd/smallintmap.rs | |
| parent | dd5b1de1812f308ad68472d2ab06c15d3c342d75 (diff) | |
| download | rust-f792baba42b79711b64950c46208a1eb4b9539be.tar.gz rust-f792baba42b79711b64950c46208a1eb4b9539be.zip | |
only use #[no_core] in libcore
Diffstat (limited to 'src/libstd/smallintmap.rs')
| -rw-r--r-- | src/libstd/smallintmap.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libstd/smallintmap.rs b/src/libstd/smallintmap.rs index d50804ba47b..487a5598d6f 100644 --- a/src/libstd/smallintmap.rs +++ b/src/libstd/smallintmap.rs @@ -16,7 +16,6 @@ use core::container::{Container, Mutable, Map, Set}; use core::iter::{BaseIter}; use core::option::{Some, None}; -use core::prelude::*; pub struct SmallIntMap<T> { priv v: ~[Option<T>], @@ -243,7 +242,6 @@ pub impl<V:Copy> SmallIntMap<V> { #[cfg(test)] mod tests { use super::SmallIntMap; - use core::prelude::*; #[test] fn test_find_mut() { |
