Skip to content

Commit d32b654

Browse files
committed
---
yaml --- r: 181550 b: refs/heads/snap-stage3 c: 10f51fc h: refs/heads/master v: v3
1 parent c7f327e commit d32b654

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 6c065fc8cb036785f61ff03e05c1563cbb2dd081
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: a6724989ceb6bccd63f5e017dd938bce804a3b5c
4+
refs/heads/snap-stage3: 10f51fc412b36ac4456be01d549d7ecd247a517b
55
refs/heads/try: ccf8fedf1cffcb8f6f3581d53d220039e192fe77
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/src/libstd/sys/windows/os.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ use os::windows::*;
1818
use error::Error as StdError;
1919
use ffi::{OsString, OsStr, AsOsStr};
2020
use fmt;
21-
use iter::Range;
21+
use ops::Range;
2222
use libc::types::os::arch::extra::LPWCH;
2323
use libc::{self, c_int, c_void};
2424
use mem;
@@ -319,7 +319,7 @@ pub fn args() -> Args {
319319
let lpCmdLine = c::GetCommandLineW();
320320
let szArgList = c::CommandLineToArgvW(lpCmdLine, &mut nArgs);
321321

322-
Args { cur: szArgList, range: range(0, nArgs as isize) }
322+
Args { cur: szArgList, range: 0..(nArgs as isize) }
323323
}
324324
}
325325

0 commit comments

Comments
 (0)