mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-01 15:50:05 +03:00
f87b84ce3d
Derive `Default` for `QueryArenas` There's no need to manually implement Default for this struct, because the fields are all `TypeArena<_>` or `()`, which both implement Default already. This lets us avoid one occurrence of the `query_if_arena!` macro.