]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/path/windows.rs
Register new snapshots
[rust.git] / src / libstd / path / windows.rs
index b9bb0054d441a4216210956e032b0d2009ab259d..553c7af18cb26cb1f4d17ffca6c97b3642225d91 100644 (file)
@@ -899,12 +899,6 @@ pub fn make_non_verbatim(path: &Path) -> Option<Path> {
             // \\?\D:\
             Path::new(repr.slice_from(4))
         }
-        #[cfg(stage0)]
-        Some(VerbatimUNCPrefix(_,_)) => {
-            // \\?\UNC\server\share
-            Path::new(format!(r"\\{}", repr.slice_from(7)))
-        }
-        #[cfg(not(stage0))]
         Some(VerbatimUNCPrefix(_,_)) => {
             // \\?\UNC\server\share
             Path::new(format!(r"\{}", repr.slice_from(7)))