Skip to content

Commit 38e0745

Browse files
committed
Add type annotation to deal with fallout
1 parent 7c152f8 commit 38e0745

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/driver/driver.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ fn write_out_deps(sess: &Session,
660660
_ => return,
661661
};
662662

663-
let result = (|| {
663+
let result = (|| -> io::IoResult<()> {
664664
// Build a list of files used to compile the output and
665665
// write Makefile-compatible dependency rules
666666
let files: Vec<String> = sess.codemap().files.borrow()

0 commit comments

Comments
 (0)