diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-03-13 16:58:04 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-03-13 16:58:04 +0000 |
commit | 6ab405f2e9861c34ab9e1ad86af6604523745cef (patch) | |
tree | a9c674c83723e2ed145793f72450c873da62a6fc /crates/hir_ty/src/diagnostics | |
parent | d4533785698d439417bc5474fecd62a7f1707368 (diff) | |
parent | 9719ce9fc731a400c9744ba1a6569e978c1a97e7 (diff) |
Merge #7998
7998: Use more Chalk IDs r=flodiebold a=flodiebold
Co-authored-by: Florian Diebold <[email protected]>
Diffstat (limited to 'crates/hir_ty/src/diagnostics')
-rw-r--r-- | crates/hir_ty/src/diagnostics/unsafe_check.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_ty/src/diagnostics/unsafe_check.rs b/crates/hir_ty/src/diagnostics/unsafe_check.rs index e095bee28..20bb64827 100644 --- a/crates/hir_ty/src/diagnostics/unsafe_check.rs +++ b/crates/hir_ty/src/diagnostics/unsafe_check.rs | |||
@@ -85,7 +85,7 @@ fn walk_unsafe( | |||
85 | let expr = &body.exprs[current]; | 85 | let expr = &body.exprs[current]; |
86 | match expr { | 86 | match expr { |
87 | &Expr::Call { callee, .. } => { | 87 | &Expr::Call { callee, .. } => { |
88 | if let Some(func) = infer[callee].as_fn_def() { | 88 | if let Some(func) = infer[callee].as_fn_def(db) { |
89 | if db.function_data(func).is_unsafe { | 89 | if db.function_data(func).is_unsafe { |
90 | unsafe_exprs.push(UnsafeExpr { expr: current, inside_unsafe_block }); | 90 | unsafe_exprs.push(UnsafeExpr { expr: current, inside_unsafe_block }); |
91 | } | 91 | } |