From dab8daa088e0caccf08b63a63338edf06b79eadf Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Thu, 5 May 2022 01:54:07 +0200 Subject: [PATCH] Make GetSocketApiError static ... but only in the header ;) --- src/Network/Server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Network/Server.cpp b/src/Network/Server.cpp index b45b2be..a1885c7 100644 --- a/src/Network/Server.cpp +++ b/src/Network/Server.cpp @@ -141,7 +141,7 @@ void Server::SendLarge(std::string Data) { TCPSend(Data); } -static std::string Server::GetSocketApiError() { +std::string Server::GetSocketApiError() { // This will provide us with the error code and an error message, all in one. // The resulting format is " - " int err;