diff options
| author | Camille GILLOT <gillot.camille@gmail.com> | 2021-05-11 22:05:54 +0200 |
|---|---|---|
| committer | Camille GILLOT <gillot.camille@gmail.com> | 2021-05-30 19:58:01 +0200 |
| commit | ee94fbb607957ff842778ebec5e8e621145c60b3 (patch) | |
| tree | deda1971dd41569d6ca75b3567fa4b1f46a262c3 /compiler/rustc_ast/src | |
| parent | e1e69495582a6073717c1f68ee84084fbbeefb0a (diff) | |
| download | rust-ee94fbb607957ff842778ebec5e8e621145c60b3.tar.gz rust-ee94fbb607957ff842778ebec5e8e621145c60b3.zip | |
Make allocator_kind a query.
Diffstat (limited to 'compiler/rustc_ast/src')
| -rw-r--r-- | compiler/rustc_ast/src/expand/allocator.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_ast/src/expand/allocator.rs b/compiler/rustc_ast/src/expand/allocator.rs index cd27f958e46..1976e4ad3c9 100644 --- a/compiler/rustc_ast/src/expand/allocator.rs +++ b/compiler/rustc_ast/src/expand/allocator.rs @@ -1,6 +1,6 @@ use rustc_span::symbol::{sym, Symbol}; -#[derive(Clone, Copy)] +#[derive(Clone, Debug, Copy, HashStable_Generic)] pub enum AllocatorKind { Global, Default, |
