diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2015-01-04 20:36:57 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2015-01-05 17:22:14 -0500 |
| commit | b4ccc901660f08c7555ef8b1ce3e94fb12890a15 (patch) | |
| tree | 5f0acb7d633497ea18d555ca449b2a72245e6d67 | |
| parent | bf52e262e20efaaadf3fec47f20880ffc171a34f (diff) | |
| download | rust-b4ccc901660f08c7555ef8b1ce3e94fb12890a15.tar.gz rust-b4ccc901660f08c7555ef8b1ce3e94fb12890a15.zip | |
driver: remove unboxed closures
| -rw-r--r-- | src/librustc_driver/driver.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_driver/driver.rs b/src/librustc_driver/driver.rs index 1455aa3c99b..9540c3fa3d7 100644 --- a/src/librustc_driver/driver.rs +++ b/src/librustc_driver/driver.rs @@ -638,7 +638,7 @@ fn write_out_deps(sess: &Session, _ => return, }; - let result = (|| -> io::IoResult<()> { + let result = (|&:| -> io::IoResult<()> { // Build a list of files used to compile the output and // write Makefile-compatible dependency rules let files: Vec<String> = sess.codemap().files.borrow() |
