Skip to content

Commit 732db97

Browse files
committed
---
yaml --- r: 220451 b: refs/heads/auto c: 30ac7e7 h: refs/heads/master i: 220449: 6c2cdde 220447: 68ba6a3 v: v3
1 parent 3b23d66 commit 732db97

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
88
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
99
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1010
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
11-
refs/heads/auto: 2a74fa35828f8daa6df00c4414241493dd57555a
11+
refs/heads/auto: 30ac7e78e26f1f52fc8c5b56bbdab4cc27bb3263
1212
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1313
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
1414
refs/tags/0.2: 1754d02027f2924bed83b0160ee340c7f41d5ea1

branches/auto/src/librustc_driver/lib.rs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ pub trait CompilerCalls<'a> {
202202
// be called straight after options have been parsed but before anything
203203
// else (e.g., selecting input and output).
204204
fn early_callback(&mut self,
205-
&getopts::Matches,
206-
&diagnostics::registry::Registry)
205+
_: &getopts::Matches,
206+
_: &diagnostics::registry::Registry)
207207
-> Compilation {
208208
Compilation::Continue
209209
}
@@ -212,11 +212,11 @@ pub trait CompilerCalls<'a> {
212212
// be called just before actual compilation starts (and before build_controller
213213
// is called), after all arguments etc. have been completely handled.
214214
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>)
220220
-> Compilation {
221221
Compilation::Continue
222222
}
@@ -235,11 +235,11 @@ pub trait CompilerCalls<'a> {
235235
// emitting error messages. Returning None will cause compilation to stop
236236
// at this point.
237237
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)
243243
-> Option<(Input, Option<PathBuf>)> {
244244
None
245245
}

0 commit comments

Comments
 (0)