Skip to content

Commit fc67e57

Browse files
Add missing lifetime specifier
Co-Authored-By: Mazdak Farrokhzad <[email protected]>
1 parent 47ea8ae commit fc67e57

File tree

1 file changed

+1
-1
lines changed
  • src/libstd/sys/redox/ext

1 file changed

+1
-1
lines changed

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

+1-1
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)