Skip to content

Commit 77e3eb3

Browse files
committed
---
yaml --- r: 274559 b: refs/heads/stable c: fb172b6 h: refs/heads/master i: 274557: 6edf8f6 274555: c6b767d 274551: d974f2e 274543: 7e5f2c2 274527: 14b8b6c 274495: 7b5283b 274431: c19f067
1 parent 26ff17e commit 77e3eb3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ refs/heads/tmp: e06d2ad9fcd5027bcaac5b08fc9aa39a49d0ecd3
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: c0221c8897db309a79990367476177b1230bb264
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32-
refs/heads/stable: 0bd55e548410515c9cea059ae5d9116e4a738966
32+
refs/heads/stable: fb172b676e5ab951e58b98cede795ab1a7557a58
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b
3535
refs/tags/1.2.0: f557861f822c34f07270347b94b5280de20a597e

branches/stable/src/libstd/sys/windows/fs.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -657,6 +657,7 @@ pub fn copy(from: &Path, to: &Path) -> io::Result<u64> {
657657
Ok(size as u64)
658658
}
659659

660+
#[allow(dead_code)]
660661
pub fn symlink_junction<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> io::Result<()> {
661662
symlink_junction_inner(src.as_ref(), dst.as_ref())
662663
}
@@ -666,6 +667,7 @@ pub fn symlink_junction<P: AsRef<Path>, Q: AsRef<Path>>(src: P, dst: Q) -> io::R
666667
// what can be found here:
667668
//
668669
// http://www.flexhex.com/docs/articles/hard-links.phtml
670+
#[allow(dead_code)]
669671
fn symlink_junction_inner(target: &Path, junction: &Path) -> io::Result<()> {
670672
let d = DirBuilder::new();
671673
try!(d.mkdir(&junction));

0 commit comments

Comments
 (0)