File tree Expand file tree Collapse file tree 2 files changed +13
-13
lines changed
branches/stable/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 @@ -29,7 +29,7 @@ refs/heads/tmp: afae2ff723393b3ab4ccffef6ac7c6d1809e2da0
29
29
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
30
30
refs/tags/homu-tmp: f859507de8c410b648d934d8f5ec1c52daac971d
31
31
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32
- refs/heads/stable: 2a74fa35828f8daa6df00c4414241493dd57555a
32
+ refs/heads/stable: 30ac7e78e26f1f52fc8c5b56bbdab4cc27bb3263
33
33
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
34
34
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b
35
35
refs/tags/1.2.0: f557861f822c34f07270347b94b5280de20a597e
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