Skip to content

Commit

Permalink
fix(hir): resolve cargo errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Wodann committed Nov 6, 2019
1 parent 63b2605 commit 4fbe2f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/mun_hir/src/code_model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ pub struct FnData {
}

impl FnData {
pub(crate) fn fn_data_query(db: &(impl DefDatabase), func: Function) -> Arc<FnData> {
pub(crate) fn fn_data_query(db: &impl DefDatabase, func: Function) -> Arc<FnData> {
let src = func.source(db);
let mut type_ref_builder = TypeRefBuilder::default();
let name = src
Expand Down

0 comments on commit 4fbe2f3

Please sign in to comment.