We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c695935 commit 5a11af2Copy full SHA for 5a11af2
src/server/select.d
@@ -279,10 +279,8 @@ version (kqueue) final class KqueueSelector : Selector
279
final class PollSelector : Selector
280
{
281
version (Windows) {
282
- import core.sys.windows.winsock2 : poll = WSAPoll, POLLERR,
283
- pollfd = WSAPOLLFD, POLLHUP,
284
- POLLIN = POLLRDNORM,
285
- POLLOUT = POLLWRNORM;
+ import core.sys.windows.winsock2 : poll = WSAPoll, POLLERR, pollfd,
+ POLLHUP, POLLIN, POLLOUT;
286
}
287
else version (Posix) {
288
import core.sys.posix.poll;
0 commit comments