MSVC missing includes

This commit is contained in:
Michael Davidsaver
2020-03-28 17:32:23 -07:00
parent bce2c1f13a
commit 36dc71a158
3 changed files with 9 additions and 1 deletions
+5 -1
View File
@@ -4,13 +4,17 @@
* in file LICENSE that is included with this distribution.
*/
#include <osiSock.h>
#ifdef _WIN32
#include <mswsock.h>
# include <windows.h>
# include <mswsock.h>
#endif
#include <cstring>
#include <system_error>
#include <deque>
#include <algorithm>
#include <event2/event.h>
#include <event2/thread.h>