Remove Session::span_err_or_warn
.
It's unused.
This commit is contained in:
parent
ce5919fcef
commit
87a2bc027c
1 changed files with 0 additions and 14 deletions
|
@ -490,20 +490,6 @@ impl Session {
|
|||
}
|
||||
#[rustc_lint_diagnostics]
|
||||
#[track_caller]
|
||||
pub fn span_err_or_warn<S: Into<MultiSpan>>(
|
||||
&self,
|
||||
is_warning: bool,
|
||||
sp: S,
|
||||
msg: impl Into<DiagnosticMessage>,
|
||||
) {
|
||||
if is_warning {
|
||||
self.span_warn(sp, msg);
|
||||
} else {
|
||||
self.span_err(sp, msg);
|
||||
}
|
||||
}
|
||||
#[rustc_lint_diagnostics]
|
||||
#[track_caller]
|
||||
pub fn span_err<S: Into<MultiSpan>>(
|
||||
&self,
|
||||
sp: S,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue