Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/hir-ty/src/layout/target.rs')
| -rw-r--r-- | crates/hir-ty/src/layout/target.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir-ty/src/layout/target.rs b/crates/hir-ty/src/layout/target.rs index 04b940afbe..b2185a03ea 100644 --- a/crates/hir-ty/src/layout/target.rs +++ b/crates/hir-ty/src/layout/target.rs @@ -12,7 +12,7 @@ pub fn target_data_layout_query( ) -> Option<Arc<TargetDataLayout>> { let crate_graph = db.crate_graph(); let target_layout = crate_graph[krate].target_layout.as_ref().ok()?; - let res = TargetDataLayout::parse_from_llvm_datalayout_string(&target_layout); + let res = TargetDataLayout::parse_from_llvm_datalayout_string(target_layout); if let Err(_e) = &res { // FIXME: Print the error here once it implements debug/display // also logging here is somewhat wrong, but unfortunately this is the earliest place we can |