File tree Expand file tree Collapse file tree 2 files changed +13
-13
lines changed
branches/tmp/src/librustc_driver Expand file tree Collapse file tree 2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
25
25
refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
26
26
refs/heads/beta: c8bab9d06a179028a0d5129aa62f09d694d9cc49
27
27
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
28
- refs/heads/tmp: 2a74fa35828f8daa6df00c4414241493dd57555a
28
+ refs/heads/tmp: 30ac7e78e26f1f52fc8c5b56bbdab4cc27bb3263
29
29
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
30
30
refs/tags/homu-tmp: 1b28ffa5216c845d1cef6b0cb3e5ac7db12025d0
31
31
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
Original file line number Diff line number Diff line change @@ -202,8 +202,8 @@ pub trait CompilerCalls<'a> {
202
202
// be called straight after options have been parsed but before anything
203
203
// else (e.g., selecting input and output).
204
204
fn early_callback ( & mut self ,
205
- & getopts:: Matches ,
206
- & diagnostics:: registry:: Registry )
205
+ _ : & getopts:: Matches ,
206
+ _ : & diagnostics:: registry:: Registry )
207
207
-> Compilation {
208
208
Compilation :: Continue
209
209
}
@@ -212,11 +212,11 @@ pub trait CompilerCalls<'a> {
212
212
// be called just before actual compilation starts (and before build_controller
213
213
// is called), after all arguments etc. have been completely handled.
214
214
fn late_callback ( & mut self ,
215
- & getopts:: Matches ,
216
- & Session ,
217
- & Input ,
218
- & Option < PathBuf > ,
219
- & Option < PathBuf > )
215
+ _ : & getopts:: Matches ,
216
+ _ : & Session ,
217
+ _ : & Input ,
218
+ _ : & Option < PathBuf > ,
219
+ _ : & Option < PathBuf > )
220
220
-> Compilation {
221
221
Compilation :: Continue
222
222
}
@@ -235,11 +235,11 @@ pub trait CompilerCalls<'a> {
235
235
// emitting error messages. Returning None will cause compilation to stop
236
236
// at this point.
237
237
fn no_input ( & mut self ,
238
- & getopts:: Matches ,
239
- & config:: Options ,
240
- & Option < PathBuf > ,
241
- & Option < PathBuf > ,
242
- & diagnostics:: registry:: Registry )
238
+ _ : & getopts:: Matches ,
239
+ _ : & config:: Options ,
240
+ _ : & Option < PathBuf > ,
241
+ _ : & Option < PathBuf > ,
242
+ _ : & diagnostics:: registry:: Registry )
243
243
-> Option < ( Input , Option < PathBuf > ) > {
244
244
None
245
245
}
You can’t perform that action at this time.
0 commit comments