diff options
| author | Michael Goulet <michael@errs.io> | 2024-07-16 00:03:37 -0400 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2024-07-17 10:46:10 -0400 |
| commit | a6510507e784d37f52558a6ceaa8cf92d345a4e2 (patch) | |
| tree | 02d02114efa9b2062bb52054110cc95fc0023c7e /compiler/rustc_middle/src/macros.rs | |
| parent | 3de0a7c716daab58bdb6551b0d0af6a466486639 (diff) | |
| download | rust-a6510507e784d37f52558a6ceaa8cf92d345a4e2.tar.gz rust-a6510507e784d37f52558a6ceaa8cf92d345a4e2.zip | |
lift_to_tcx -> lift_to_interner
Diffstat (limited to 'compiler/rustc_middle/src/macros.rs')
| -rw-r--r-- | compiler/rustc_middle/src/macros.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_middle/src/macros.rs b/compiler/rustc_middle/src/macros.rs index fcea1ea81a7..d385be007d3 100644 --- a/compiler/rustc_middle/src/macros.rs +++ b/compiler/rustc_middle/src/macros.rs @@ -59,7 +59,7 @@ macro_rules! TrivialLiftImpls { $( impl<'tcx> $crate::ty::Lift<$crate::ty::TyCtxt<'tcx>> for $ty { type Lifted = Self; - fn lift_to_tcx(self, _: $crate::ty::TyCtxt<'tcx>) -> Option<Self> { + fn lift_to_interner(self, _: $crate::ty::TyCtxt<'tcx>) -> Option<Self> { Some(self) } } |
