remove inlinable_string dependency

This commit is contained in:
Folkert 2021-08-03 21:24:19 +02:00
parent ceb5cc66fa
commit d4896d3ed2
21 changed files with 4 additions and 65 deletions

View file

@ -1280,8 +1280,6 @@ fn problems_to_tip<'b>(
}
pub mod suggest {
use core::convert::AsRef;
use inlinable_string::InlinableString;
use roc_module::ident::Lowercase;
pub trait ToStr {
@ -1300,12 +1298,6 @@ pub mod suggest {
}
}
impl ToStr for InlinableString {
fn to_str(&self) -> &str {
self.as_ref()
}
}
impl ToStr for &str {
fn to_str(&self) -> &str {
self