diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-01-08 17:35:08 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-01-08 17:35:08 +0000 |
commit | 1c25bf05d714680c048d250a5d39e8a4c25f0c31 (patch) | |
tree | 9879fc268f2812576839118cf7e4c88df180a30b /crates/ra_hir/src/db.rs | |
parent | 3b166aee3c116762c817f1acd0f5e01e48452932 (diff) | |
parent | ac92973a6c5934377c6eca9906f3b7f17e220d4e (diff) |
Merge #467
467: move function to code_model_api r=matklad a=matklad
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_hir/src/db.rs')
-rw-r--r-- | crates/ra_hir/src/db.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir/src/db.rs b/crates/ra_hir/src/db.rs index bb4fb3d66..07cf0d10a 100644 --- a/crates/ra_hir/src/db.rs +++ b/crates/ra_hir/src/db.rs | |||
@@ -106,7 +106,7 @@ pub trait HirDatabase: SyntaxDatabase | |||
106 | 106 | ||
107 | fn fn_signature(def_id: DefId) -> Arc<FnSignature> { | 107 | fn fn_signature(def_id: DefId) -> Arc<FnSignature> { |
108 | type FnSignatureQuery; | 108 | type FnSignatureQuery; |
109 | use fn crate::function::fn_signature; | 109 | use fn crate::FnSignature::fn_signature_query; |
110 | } | 110 | } |
111 | } | 111 | } |
112 | 112 | ||