diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2019-01-07 16:25:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-07 16:25:33 +0100 |
| commit | c89b07aa520517d911aa269bef7f260fa61c6718 (patch) | |
| tree | 757862aff5b3f3fd6bd2f1b834c19532db8c2e5f | |
| parent | 1f7c44cdb2958ceb0a5d78634a704a492a241b6f (diff) | |
| parent | 63b17d1b98c87f26e492147057138f421948f24e (diff) | |
| download | rust-c89b07aa520517d911aa269bef7f260fa61c6718.tar.gz rust-c89b07aa520517d911aa269bef7f260fa61c6718.zip | |
Rollup merge of #57290 - mark-i-m:remove-outdated-comment, r=michaelwoerister
remove outdated comment https://github.com/rust-lang/rust/issues/44234 was closed, apparently solved by #45353 r? @michaelwoerister
| -rw-r--r-- | src/librustc/ty/context.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/librustc/ty/context.rs b/src/librustc/ty/context.rs index 6c377941dad..f6816d2f4e2 100644 --- a/src/librustc/ty/context.rs +++ b/src/librustc/ty/context.rs @@ -2930,9 +2930,6 @@ impl<T, R, E> InternIteratorElement<T, R> for Result<T, E> { } pub fn provide(providers: &mut ty::query::Providers<'_>) { - // FIXME(#44234): almost all of these queries have no sub-queries and - // therefore no actual inputs, they're just reading tables calculated in - // resolve! Does this work? Unsure! That's what the issue is about. providers.in_scope_traits_map = |tcx, id| tcx.gcx.trait_map.get(&id).cloned(); providers.module_exports = |tcx, id| tcx.gcx.export_map.get(&id).cloned(); providers.crate_name = |tcx, id| { |
