diff options
author | Jean SIMARD <[email protected]> | 2020-09-23 07:45:35 +0100 |
---|---|---|
committer | Jean SIMARD <[email protected]> | 2020-09-24 15:39:08 +0100 |
commit | 875ad9b5c410200f5072515ae91b4ff51cff0448 (patch) | |
tree | 6bda8f0ada24dc61116e8f427a10109524bd7645 /crates/hir_ty | |
parent | 5d137f21f298c079b761bdae8284e1cd88fafb88 (diff) |
Bump smol_str from 0.1.16 to 0.1.17
Diffstat (limited to 'crates/hir_ty')
-rw-r--r-- | crates/hir_ty/src/infer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir_ty/src/infer.rs b/crates/hir_ty/src/infer.rs index 2b53b8297..9a7785c76 100644 --- a/crates/hir_ty/src/infer.rs +++ b/crates/hir_ty/src/infer.rs | |||
@@ -555,7 +555,7 @@ impl<'a> InferenceContext<'a> { | |||
555 | 555 | ||
556 | fn resolve_lang_item(&self, name: &str) -> Option<LangItemTarget> { | 556 | fn resolve_lang_item(&self, name: &str) -> Option<LangItemTarget> { |
557 | let krate = self.resolver.krate()?; | 557 | let krate = self.resolver.krate()?; |
558 | let name = SmolStr::new_inline_from_ascii(name.len(), name.as_bytes()); | 558 | let name = SmolStr::new_inline(name); |
559 | self.db.lang_item(krate, name) | 559 | self.db.lang_item(krate, name) |
560 | } | 560 | } |
561 | 561 | ||