File tree Expand file tree Collapse file tree 2 files changed +13
-13
lines changed
branches/auto/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 @@ -8,7 +8,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
8
8
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
9
9
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
10
10
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
11
- refs/heads/auto: 2a74fa35828f8daa6df00c4414241493dd57555a
11
+ refs/heads/auto: 30ac7e78e26f1f52fc8c5b56bbdab4cc27bb3263
12
12
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
13
13
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
14
14
refs/tags/0.2: 1754d02027f2924bed83b0160ee340c7f41d5ea1
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