about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorMichael Sullivan <sully@msully.net>2013-07-11 14:09:42 -0700
committerMichael Sullivan <sully@msully.net>2013-07-11 15:51:10 -0700
commit3fa5203273ad5a88b20b77b83a7a2e42cbcc3602 (patch)
tree984e90a813760d8758115b03c69ebd827e388726 /src/libstd
parent19446418bcc7ae48b23dd89d04e78c3d552e3001 (diff)
downloadrust-3fa5203273ad5a88b20b77b83a7a2e42cbcc3602.tar.gz
rust-3fa5203273ad5a88b20b77b83a7a2e42cbcc3602.zip
Take default methods out from behind the flag.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/iterator.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/iterator.rs b/src/libstd/iterator.rs
index a17fea24b2c..b9593d845a4 100644
--- a/src/libstd/iterator.rs
+++ b/src/libstd/iterator.rs
@@ -17,7 +17,7 @@ implementing the `Iterator` trait.
 
 */
 
-#[allow(default_methods)]; // solid enough for the use case here
+#[allow(default_methods)]; // still off by default in stage0
 
 use cmp;
 use iter::Times;