diff options
| author | Stefan Boberg <[email protected]> | 2021-09-11 17:29:47 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-11 17:29:47 +0200 |
| commit | 62ac72cad393f1685a3ea64ddf9d4399dc430452 (patch) | |
| tree | 0a00687f44eef8930fab3b2a8804c009e1ef52c6 /zenhttp/httpsys.h | |
| parent | Changed worker thread defaults to reflect available hardware concurrency (diff) | |
| download | zen-62ac72cad393f1685a3ea64ddf9d4399dc430452.tar.xz zen-62ac72cad393f1685a3ea64ddf9d4399dc430452.zip | |
Comment fixes, changed thread count args to unsigned
Diffstat (limited to 'zenhttp/httpsys.h')
| -rw-r--r-- | zenhttp/httpsys.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenhttp/httpsys.h b/zenhttp/httpsys.h index 9149b54d6..6616817ec 100644 --- a/zenhttp/httpsys.h +++ b/zenhttp/httpsys.h @@ -32,7 +32,7 @@ class HttpSysServer : public HttpServer friend class HttpSysTransaction; public: - explicit HttpSysServer(int ThreadCount); + explicit HttpSysServer(unsigned int ThreadCount); ~HttpSysServer(); // HttpServer interface implementation |