about summary refs log tree commit diff
path: root/src/libstd/path
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-08-30 19:51:25 +0000
committerbors <bors@rust-lang.org>2014-08-30 19:51:25 +0000
commitf2973665935161bb2b2eca3f41c33a4fd2fe82c4 (patch)
tree285aa850b2763a426fdd2a874d100261de3d7024 /src/libstd/path
parentcbacdbc5f3bc4f401a96177df8efd2eb765e8799 (diff)
parentd15d55973946f8f582ba69b1789b5b5d35da5b2d (diff)
downloadrust-f2973665935161bb2b2eca3f41c33a4fd2fe82c4.tar.gz
rust-f2973665935161bb2b2eca3f41c33a4fd2fe82c4.zip
auto merge of #16859 : alexcrichton/rust/snapshots, r=huonw
Diffstat (limited to 'src/libstd/path')
-rw-r--r--src/libstd/path/mod.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/libstd/path/mod.rs b/src/libstd/path/mod.rs
index 6a10be84a62..86036c2a2dc 100644
--- a/src/libstd/path/mod.rs
+++ b/src/libstd/path/mod.rs
@@ -825,15 +825,7 @@ pub trait GenericPathUnsafe {
     unsafe fn push_unchecked<T: BytesContainer>(&mut self, path: T);
 }
 
-/// Note: stage0-specific version that lacks bound.
-#[cfg(stage0)]
-pub struct Display<'a, P> {
-    path: &'a P,
-    filename: bool
-}
-
 /// Helper struct for printing paths with format!()
-#[cfg(not(stage0))]
 pub struct Display<'a, P:'a> {
     path: &'a P,
     filename: bool