about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorEric Holk <eric.holk@gmail.com>2012-07-25 18:00:29 -0700
committerEric Holk <eric.holk@gmail.com>2012-07-25 18:00:29 -0700
commite1d4bd463c29e4224f0ac41652d75ffac8080683 (patch)
tree1a8680e798b76201d7317fca8dff7667101cea76 /src/libstd
parent3aee39a6ec910bde6ae9a5423b11aaaad4a1b089 (diff)
3x faster typechecking
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/smallintmap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/smallintmap.rs b/src/libstd/smallintmap.rs
index 09f14f4f63e..02948f58fc4 100644
--- a/src/libstd/smallintmap.rs
+++ b/src/libstd/smallintmap.rs
@@ -27,7 +27,7 @@ fn mk<T: copy>() -> smallintmap<T> {
  */
 #[inline(always)]
 fn insert<T: copy>(self: smallintmap<T>, key: uint, val: T) {
-    //#error("inserting key %?", key);
+    //io::println(#fmt("%?", key));
     self.v.grow_set_elt(key, none, some(val));
 }