Skip to content

Commit fc67e57

Browse files
Add missing lifetime specifier
Co-Authored-By: Mazdak Farrokhzad <twingoow@gmail.com>
1 parent 47ea8ae commit fc67e57

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/libstd/sys/redox/ext

src/libstd/sys/redox/ext/net.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ impl UnixListener {
673673
/// }
674674
/// ```
675675
#[stable(feature = "unix_socket_redox", since = "1.29.0")]
676-
pub fn incoming(&self) -> Incoming {
676+
pub fn incoming(&self) -> Incoming<'_> {
677677
Incoming { listener: self }
678678
}
679679
}

0 commit comments

Comments
 (0)