diff options
| author | Takayuki Maeda <takoyaki0316@gmail.com> | 2022-07-11 16:51:19 +0900 |
|---|---|---|
| committer | Takayuki Maeda <takoyaki0316@gmail.com> | 2022-07-11 16:51:19 +0900 |
| commit | 018155c3a218b819b70d1dc57b08fe3bc7b2ec3c (patch) | |
| tree | 2ebe8ab227bd73c12a0445f6706a7179f75e904e /compiler/rustc_borrowck | |
| parent | 12d11e9a35ccb380388c0568ed1d8735d89f51c3 (diff) | |
| download | rust-018155c3a218b819b70d1dc57b08fe3bc7b2ec3c.tar.gz rust-018155c3a218b819b70d1dc57b08fe3bc7b2ec3c.zip | |
rename a method
Diffstat (limited to 'compiler/rustc_borrowck')
| -rw-r--r-- | compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs | 2 | ||||
| -rw-r--r-- | compiler/rustc_borrowck/src/diagnostics/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs b/compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs index ed628f35148..687ff0fb505 100644 --- a/compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs +++ b/compiler/rustc_borrowck/src/diagnostics/conflict_errors.rs @@ -309,7 +309,7 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> { )); // Check first whether the source is accessible (issue #87060) - if self.infcx.tcx.sess.source_map().is_accessible_span(deref_target) { + if self.infcx.tcx.sess.source_map().is_span_accessible(deref_target) { err.span_note(deref_target, "deref defined here"); } } diff --git a/compiler/rustc_borrowck/src/diagnostics/mod.rs b/compiler/rustc_borrowck/src/diagnostics/mod.rs index 3ecf259935a..a3094a34ad7 100644 --- a/compiler/rustc_borrowck/src/diagnostics/mod.rs +++ b/compiler/rustc_borrowck/src/diagnostics/mod.rs @@ -975,7 +975,7 @@ impl<'cx, 'tcx> MirBorrowckCtxt<'cx, 'tcx> { if self.fn_self_span_reported.insert(fn_span) { err.span_note( // Check whether the source is accessible - if self.infcx.tcx.sess.source_map().is_accessible_span(self_arg.span) { + if self.infcx.tcx.sess.source_map().is_span_accessible(self_arg.span) { self_arg.span } else { fn_call_span |
