From 2eb030dd8304eae6846e6bc4a0acfc8723c62034 Mon Sep 17 00:00:00 2001 From: AlexandreRouma Date: Thu, 30 Mar 2023 19:55:54 +0200 Subject: [PATCH] Added stdexcept --- core/src/utils/net.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/utils/net.cpp b/core/src/utils/net.cpp index 10fdaa71..3ce6b5c2 100644 --- a/core/src/utils/net.cpp +++ b/core/src/utils/net.cpp @@ -1,6 +1,7 @@ #include "net.h" #include #include +#include #ifdef _WIN32 #define WOULD_BLOCK (WSAGetLastError() == WSAEWOULDBLOCK) @@ -403,4 +404,4 @@ namespace net { std::shared_ptr openudp(std::string rhost, int rport, std::string lhost, int lport) { return openudp(Address(rhost, rport), Address(lhost, lport)); } -} \ No newline at end of file +}