From 33c210b7e002c7c2139d65f68985c6130d9b10a6 Mon Sep 17 00:00:00 2001 From: simplxs Date: Sat, 29 Jun 2024 20:34:36 +0800 Subject: [PATCH] fix linux --- src/server.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server.h b/src/server.h index 666ff9f..add6b0f 100644 --- a/src/server.h +++ b/src/server.h @@ -10,9 +10,9 @@ private: std::atomic counter = 0; private: - std::string Server::GetSign(const std::string_view &cmd, const std::string_view &src, const int seq); + std::string GetSign(const std::string_view &cmd, const std::string_view &src, const int seq); public: void Init(); - bool Server::Run(const std::string &ip, int port); + bool Run(const std::string &ip, int port); }; \ No newline at end of file