Skip to content

Commit 5d13085

Browse files
committed
intentionally break build to see what needs this
1 parent d1102c7 commit 5d13085

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

thin-str/src/thin_string.rs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -184,11 +184,11 @@ impl fmt::Display for ThinString<Global> {
184184
}
185185
}
186186

187-
impl From<&str> for ThinString<Global> {
188-
fn from(string: &str) -> Self {
189-
Self::from_str_in(string, Global)
190-
}
191-
}
187+
// impl From<&str> for ThinString<Global> {
188+
// fn from(string: &str) -> Self {
189+
// Self::from_str_in(string, Global)
190+
// }
191+
// }
192192

193193
#[cfg(feature = "std")]
194194
extern crate std;
@@ -212,11 +212,11 @@ mod ext {
212212
}
213213
}
214214

215-
impl From<String> for ThinString<Global> {
216-
fn from(string: String) -> Self {
217-
ThinString::from_str_in(string.as_str(), Global)
218-
}
219-
}
215+
// impl From<String> for ThinString<Global> {
216+
// fn from(string: String) -> Self {
217+
// ThinString::from_str_in(string.as_str(), Global)
218+
// }
219+
// }
220220

221221
#[cfg(test)]
222222
mod tests {

0 commit comments

Comments
 (0)