about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/oldsmallintmap.rs (renamed from src/libstd/smallintmap.rs)2
-rw-r--r--src/libstd/std.rc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/smallintmap.rs b/src/libstd/oldsmallintmap.rs
index 59ae9f68d6e..803e75e4cf7 100644
--- a/src/libstd/smallintmap.rs
+++ b/src/libstd/oldsmallintmap.rs
@@ -172,7 +172,7 @@ impl<V: Copy> SmallIntMap<V>: ops::Index<uint, V> {
 
 #[cfg(test)]
 mod tests {
-    use smallintmap::{mk, SmallIntMap};
+    use super::{mk, SmallIntMap};
 
     use core::option::None;
 
diff --git a/src/libstd/std.rc b/src/libstd/std.rc
index 51b55b1c46f..86b0f680234 100644
--- a/src/libstd/std.rc
+++ b/src/libstd/std.rc
@@ -82,7 +82,7 @@ pub mod list;
 pub mod map;
 pub mod priority_queue;
 pub mod rope;
-pub mod smallintmap;
+pub mod oldsmallintmap;
 pub mod sort;
 pub mod treemap;