File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
branches/beta/src/libstd/sys/windows Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
31
31
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32
32
refs/heads/batch: b7fd822592a4fb577552d93010c4a4e14f314346
33
33
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34
- refs/heads/beta: a6724989ceb6bccd63f5e017dd938bce804a3b5c
34
+ refs/heads/beta: 10f51fc412b36ac4456be01d549d7ecd247a517b
35
35
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
36
36
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
37
37
refs/heads/tmp: eb836bf767aa1d8d4cba488a9091cde3c0ab4b2f
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ use os::windows::*;
18
18
use error:: Error as StdError ;
19
19
use ffi:: { OsString , OsStr , AsOsStr } ;
20
20
use fmt;
21
- use iter :: Range ;
21
+ use ops :: Range ;
22
22
use libc:: types:: os:: arch:: extra:: LPWCH ;
23
23
use libc:: { self , c_int, c_void} ;
24
24
use mem;
@@ -319,7 +319,7 @@ pub fn args() -> Args {
319
319
let lpCmdLine = c:: GetCommandLineW ( ) ;
320
320
let szArgList = c:: CommandLineToArgvW ( lpCmdLine, & mut nArgs) ;
321
321
322
- Args { cur : szArgList, range : range ( 0 , nArgs as isize ) }
322
+ Args { cur : szArgList, range : 0 .. ( nArgs as isize ) }
323
323
}
324
324
}
325
325
You can’t perform that action at this time.
0 commit comments