diff options
| author | Stefan Boberg <[email protected]> | 2021-09-11 17:30:02 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-11 17:30:02 +0200 |
| commit | 8d49fa882012bf8743e678b28f50d1fb63367815 (patch) | |
| tree | e66e5fa5ec004563fead39cfaab70134d96d735d | |
| parent | Comment fixes, changed thread count args to unsigned (diff) | |
| download | zen-8d49fa882012bf8743e678b28f50d1fb63367815.tar.xz zen-8d49fa882012bf8743e678b28f50d1fb63367815.zip | |
Squelch some more uWS warnings
| -rw-r--r-- | zenhttp/httpuws.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenhttp/httpuws.cpp b/zenhttp/httpuws.cpp index 131ecf663..2fb3734e8 100644 --- a/zenhttp/httpuws.cpp +++ b/zenhttp/httpuws.cpp @@ -1,7 +1,7 @@ #include "httpuws.h" #pragma warning(push) -#pragma warning(disable : 4244 4267 4706) +#pragma warning(disable : 4244 4267 4458 4706) #include <uwebsockets/App.h> #pragma warning(pop) |