diff options
author | Florian Diebold <[email protected]> | 2019-09-25 19:01:02 +0100 |
---|---|---|
committer | Florian Diebold <[email protected]> | 2019-09-25 19:04:37 +0100 |
commit | d0d1a202d4a4c56e593611aa34ef2e39255d16d2 (patch) | |
tree | b0928748d21ca45547e53701c6fc4d6d93a39c9a /crates/ra_ide_api/src | |
parent | a452e50e0e89390b8a055f0c7c64100e9872edac (diff) |
Fix retrieval of the Fn traits
I used the wrong query, so it only used the lang items from the respective
crate...
Diffstat (limited to 'crates/ra_ide_api/src')
-rw-r--r-- | crates/ra_ide_api/src/change.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide_api/src/change.rs b/crates/ra_ide_api/src/change.rs index cc476a237..b4ba3f3cd 100644 --- a/crates/ra_ide_api/src/change.rs +++ b/crates/ra_ide_api/src/change.rs | |||
@@ -326,7 +326,7 @@ impl RootDatabase { | |||
326 | hir::db::ConstDataQuery | 326 | hir::db::ConstDataQuery |
327 | hir::db::StaticDataQuery | 327 | hir::db::StaticDataQuery |
328 | hir::db::ModuleLangItemsQuery | 328 | hir::db::ModuleLangItemsQuery |
329 | hir::db::LangItemsQuery | 329 | hir::db::CrateLangItemsQuery |
330 | hir::db::LangItemQuery | 330 | hir::db::LangItemQuery |
331 | hir::db::DocumentationQuery | 331 | hir::db::DocumentationQuery |
332 | hir::db::ExprScopesQuery | 332 | hir::db::ExprScopesQuery |