Skip to content

Commit b93571e

Browse files
Merge pull request #141 from TobiasBengtsson/fix-lifetime-clippy-ci
Fix clippy warning, unused lifetime parameter
2 parents faa452e + ab85298 commit b93571e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types/string.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ impl<'a> TryFrom<&'a ZendStr> for &'a str {
333333
}
334334
}
335335

336-
impl<'a> TryFrom<&ZendStr> for String {
336+
impl TryFrom<&ZendStr> for String {
337337
type Error = Error;
338338

339339
fn try_from(value: &ZendStr) -> Result<Self> {

0 commit comments

Comments
 (0)