diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2013-01-31 18:18:07 -0500 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2013-01-31 23:13:56 -0500 |
| commit | 70855f5a07bb17e6690c32832dec452cb211b18a (patch) | |
| tree | b9bffafcba4e94f4dc530c88f625fb8cf3bf19b4 /src/libstd | |
| parent | 9ba7114515db355ca36065d2730e3ee6c84cd6d1 (diff) | |
| download | rust-70855f5a07bb17e6690c32832dec452cb211b18a.tar.gz rust-70855f5a07bb17e6690c32832dec452cb211b18a.zip | |
move smallintmap to oldsmallintmap
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.rc | 2 |
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; |
