summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2013-03-21 18:10:20 -0700
committerPatrick Walton <pcwalton@mimiga.net>2013-03-21 18:10:20 -0700
commite7dbe6cd6f40b5360d6121ce9dba9803f2cf3233 (patch)
tree8cf121930f905b8b15af982773a7a3a35f93e502 /src/libstd
parentec8345b18abef2fba6153ae999446e3f05b8275a (diff)
downloadrust-e7dbe6cd6f40b5360d6121ce9dba9803f2cf3233.tar.gz
rust-e7dbe6cd6f40b5360d6121ce9dba9803f2cf3233.zip
librustc: Register new snapshots
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/comm.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libstd/comm.rs b/src/libstd/comm.rs
index 23ae7666bb4..314a601fb61 100644
--- a/src/libstd/comm.rs
+++ b/src/libstd/comm.rs
@@ -26,9 +26,6 @@ pub struct DuplexStream<T, U> {
 }
 
 // Allow these methods to be used without import:
-#[cfg(stage1)]
-#[cfg(stage2)]
-#[cfg(stage3)]
 pub impl<T:Owned,U:Owned> DuplexStream<T, U> {
     fn send(&self, x: T) {
         self.chan.send(x)