From 1da72873761f050932fb1f28ef36440e82334789 Mon Sep 17 00:00:00 2001 From: zvon Date: Fri, 7 Jun 2019 13:12:59 +0200 Subject: [PATCH] Fix windows compilation --- network.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/network.hpp b/network.hpp index 09226e7..e4feeda 100644 --- a/network.hpp +++ b/network.hpp @@ -1,17 +1,18 @@ #ifndef NETWORK_HPP #define NETWORK_HPP +#include + #ifdef _WIN32 -#include #include +#include using string = std::wstring; #else #include -#include using string = std::string;