Skip to content

Commit 7610c89

Browse files
committed
---
yaml --- r: 220603 b: refs/heads/tmp c: 30ac7e7 h: refs/heads/master i: 220601: 87072b8 220599: 2b96ae7 v: v3
1 parent 5c8dfd2 commit 7610c89

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
@@ -25,7 +25,7 @@ refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
2525
refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
2626
refs/heads/beta: c8bab9d06a179028a0d5129aa62f09d694d9cc49
2727
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
28-
refs/heads/tmp: 2a74fa35828f8daa6df00c4414241493dd57555a
28+
refs/heads/tmp: 30ac7e78e26f1f52fc8c5b56bbdab4cc27bb3263
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: 1b28ffa5216c845d1cef6b0cb3e5ac7db12025d0
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828

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