diff options
| author | Mark Rousskov <mark.simulacrum@gmail.com> | 2023-01-25 18:48:07 -0500 |
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2023-01-31 10:29:33 -0500 |
| commit | 652f79e83543eab07c33840748cf5df37b42ac66 (patch) | |
| tree | 53ab292dc1a9142867c91a81578af11ae8cc317c /compiler/rustc_const_eval/src/interpret | |
| parent | 5b08c9f39754039ef9c6cbde157ac9eb8c252a58 (diff) | |
| download | rust-652f79e83543eab07c33840748cf5df37b42ac66.tar.gz rust-652f79e83543eab07c33840748cf5df37b42ac66.zip | |
Download rustc component for rustfmt toolchain as well
Diffstat (limited to 'compiler/rustc_const_eval/src/interpret')
| -rw-r--r-- | compiler/rustc_const_eval/src/interpret/intern.rs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/compiler/rustc_const_eval/src/interpret/intern.rs b/compiler/rustc_const_eval/src/interpret/intern.rs index 54528b1dbf4..301bfcef78a 100644 --- a/compiler/rustc_const_eval/src/interpret/intern.rs +++ b/compiler/rustc_const_eval/src/interpret/intern.rs @@ -30,15 +30,15 @@ use super::{ use crate::const_eval; pub trait CompileTimeMachine<'mir, 'tcx, T> = Machine< - 'mir, - 'tcx, - MemoryKind = T, - Provenance = AllocId, - ExtraFnVal = !, - FrameExtra = (), - AllocExtra = (), - MemoryMap = FxIndexMap<AllocId, (MemoryKind<T>, Allocation)>, ->; + 'mir, + 'tcx, + MemoryKind = T, + Provenance = AllocId, + ExtraFnVal = !, + FrameExtra = (), + AllocExtra = (), + MemoryMap = FxIndexMap<AllocId, (MemoryKind<T>, Allocation)>, + >; struct InternVisitor<'rt, 'mir, 'tcx, M: CompileTimeMachine<'mir, 'tcx, const_eval::MemoryKind>> { /// The ectx from which we intern. |
