Fix clippy warning, unused lifetime parameter

This commit is contained in:
Tobias Bengtsson 2022-05-30 16:14:32 +02:00
parent faa452ecd1
commit ab85298b37

View File

@ -333,7 +333,7 @@ impl<'a> TryFrom<&'a ZendStr> for &'a str {
}
}
impl<'a> TryFrom<&ZendStr> for String {
impl TryFrom<&ZendStr> for String {
type Error = Error;
fn try_from(value: &ZendStr) -> Result<Self> {