Merge pull request #222 from dkorpel/master

Fix unreachable statement on Windows
This commit is contained in:
Adam D. Ruppe 2019-10-17 07:29:58 -04:00 committed by GitHub
commit a402c6eaa2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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) {