about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2013-03-20 13:48:05 -0700
committerGraydon Hoare <graydon@mozilla.com>2013-03-20 13:48:57 -0700
commit9350d14ecb025f963198e9baa39679f808496785 (patch)
tree4ca6ca35465d94dea72c885b040c310297b7293d /src/libstd
parentbb9e1e2660990012c35ee975530b0b8b3136baf0 (diff)
downloadrust-9350d14ecb025f963198e9baa39679f808496785.tar.gz
rust-9350d14ecb025f963198e9baa39679f808496785.zip
add stage3 markers where necessary for dist-snap
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/comm.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/comm.rs b/src/libstd/comm.rs
index 99f6fa4c8cf..23ae7666bb4 100644
--- a/src/libstd/comm.rs
+++ b/src/libstd/comm.rs
@@ -28,6 +28,7 @@ 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)