Commit 38872e2
committed
Silence signedness change through implicit conversion error
The error pops up when using the rebranch Clang (stable/20250402):
```
/home/build-user/swift-corelibs-libdispatch/src/event/event_epoll.c:92:27: error: implicit conversion changes signedness: 'int' to 'uint32_t' (aka 'unsigned int') [-Werror,-Wsign-conversion]
92 | return dmn->dmn_events & ~dmn->dmn_disarmed_events;
| ~ ^~~~~~~~~~~~~~~~~~~~~~~~~
```1 parent a853a11 commit 38872e2
1 file changed
+3
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
89 | 89 | | |
90 | 90 | | |
91 | 91 | | |
92 | | - | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
93 | 95 | | |
94 | 96 | | |
95 | 97 | | |
| |||
0 commit comments