fix unreachable statement on Windows

This commit is contained in:
dkorpel 2019-10-17 10:50:46 +02:00
parent ea099346ef
commit 9098eae233
1 changed files with 1 additions and 1 deletions

2
cgi.d
View File

@ -5914,8 +5914,8 @@ final class ScheduledJobServerImplementation : ScheduledJobServer, EventIoServer
throw new Exception("epoll_ctl " ~ to!string(errno));
jobs[nj] = job;
return nj;
} else assert(0);
return nj;
}
protected void cancelJob(int jobId) {