diff options
| author | Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> | 2022-12-30 23:25:19 +0100 |
|---|---|---|
| committer | Nilstrieb <48135649+Nilstrieb@users.noreply.github.com> | 2023-01-02 20:22:19 +0100 |
| commit | 9fe4efe115171dca0dd24b3f1dc3d60e87e0792d (patch) | |
| tree | b32f3a322631da2288857a3056af6c634e30a6f3 /compiler/rustc_query_impl/src/lib.rs | |
| parent | e5e5fcb0b758fcf7f149cc9206155dcfa18ec909 (diff) | |
| download | rust-9fe4efe115171dca0dd24b3f1dc3d60e87e0792d.tar.gz rust-9fe4efe115171dca0dd24b3f1dc3d60e87e0792d.zip | |
Abolish `QueryVTable` in favour of more assoc items on `QueryConfig`
This may introduce additional mono _but_ may help const fold things better and especially may help not constructing a `QueryVTable` anymore which is cheap but not free.
Diffstat (limited to 'compiler/rustc_query_impl/src/lib.rs')
| -rw-r--r-- | compiler/rustc_query_impl/src/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_query_impl/src/lib.rs b/compiler/rustc_query_impl/src/lib.rs index d426a2b6b78..2d243e13cc2 100644 --- a/compiler/rustc_query_impl/src/lib.rs +++ b/compiler/rustc_query_impl/src/lib.rs @@ -34,7 +34,6 @@ use rustc_query_system::query::*; pub use rustc_query_system::query::{deadlock, QueryContext}; pub use rustc_query_system::query::QueryConfig; -pub(crate) use rustc_query_system::query::QueryVTable; mod on_disk_cache; pub use on_disk_cache::OnDiskCache; |
