only use #[no_core] in libcore

This commit is contained in:
Daniel Micay
2013-04-26 12:24:15 -04:00
parent dd5b1de181
commit f792baba42
211 changed files with 6 additions and 810 deletions

View File

@@ -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() {