Skip to content

Commit d3a778a

Browse files
committed
---
yaml --- r: 235483 b: refs/heads/stable c: 30ac7e7 h: refs/heads/master i: 235481: d1cf2f4 235479: 6cc790f v: v3
1 parent 7e08ed4 commit d3a778a

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
@@ -29,7 +29,7 @@ refs/heads/tmp: afae2ff723393b3ab4ccffef6ac7c6d1809e2da0
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: f859507de8c410b648d934d8f5ec1c52daac971d
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32-
refs/heads/stable: 2a74fa35828f8daa6df00c4414241493dd57555a
32+
refs/heads/stable: 30ac7e78e26f1f52fc8c5b56bbdab4cc27bb3263
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b
3535
refs/tags/1.2.0: f557861f822c34f07270347b94b5280de20a597e

branches/stable/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)