Skip to content

Commit 5a11af2

Browse files
committed
select.d: simplify imports
1 parent c695935 commit 5a11af2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/server/select.d

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -279,10 +279,8 @@ version (kqueue) final class KqueueSelector : Selector
279279
final class PollSelector : Selector
280280
{
281281
version (Windows) {
282-
import core.sys.windows.winsock2 : poll = WSAPoll, POLLERR,
283-
pollfd = WSAPOLLFD, POLLHUP,
284-
POLLIN = POLLRDNORM,
285-
POLLOUT = POLLWRNORM;
282+
import core.sys.windows.winsock2 : poll = WSAPoll, POLLERR, pollfd,
283+
POLLHUP, POLLIN, POLLOUT;
286284
}
287285
else version (Posix) {
288286
import core.sys.posix.poll;

0 commit comments

Comments
 (0)