Skip to content

Commit 740dace

Browse files
committed
okay
1 parent c4e1907 commit 740dace

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sys/flags.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ macro_rules! contains {
5555
where
5656
I: Into<Self> + Copy,
5757
{
58-
bit.into().0 == 0 || (self.0 & bit.into().0) != 0
58+
(self.0 & bit.into().0) != 0
5959
}
6060
};
6161
}

0 commit comments

Comments
 (0)