about summary refs log tree commit diff
path: root/src/libstd/std.rc
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2013-01-31 19:07:08 -0500
committerDaniel Micay <danielmicay@gmail.com>2013-01-31 23:22:51 -0500
commit74b317ddc24fb0b5ffcbaafb0983cc5ddfd4a714 (patch)
tree3da6136f5526c3c45e6a3e0a65f8a14d4c238b53 /src/libstd/std.rc
parent348d770fedcddad7d814bd41072efc0602c739c8 (diff)
downloadrust-74b317ddc24fb0b5ffcbaafb0983cc5ddfd4a714.tar.gz
rust-74b317ddc24fb0b5ffcbaafb0983cc5ddfd4a714.zip
modernize smallintmap
* switch to explicit self
* get rid of the @ box
* replace DVec with ~[] (to get rid of the mutable field)
* implement the new container::Map trait
Diffstat (limited to 'src/libstd/std.rc')
-rw-r--r--src/libstd/std.rc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/std.rc b/src/libstd/std.rc
index 86b0f680234..dc73b430099 100644
--- a/src/libstd/std.rc
+++ b/src/libstd/std.rc
@@ -82,6 +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;