Skip to content

Commit f047ff3

Browse files
Fix annotation
1 parent 86dd8cf commit f047ff3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/sys/signal.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,6 +1023,12 @@ pub struct SignalSetIter<'a> {
10231023
inner: SignalValueIterator,
10241024
}
10251025

1026+
#[cfg(not(any(
1027+
target_os = "haiku",
1028+
target_os = "openbsd",
1029+
target_os = "dragonfly",
1030+
target_os = "redox"
1031+
)))]
10261032
impl Iterator for SigSetIter<'_> {
10271033
type Item = Signal;
10281034
fn next(&mut self) -> Option<Signal> {

0 commit comments

Comments
 (0)