refactor: format project

This commit is contained in:
2021-11-21 17:02:42 +01:00
parent 0f328e6f81
commit f48af51dc7
36 changed files with 162 additions and 162 deletions

View File

@@ -29,12 +29,12 @@ void Server::startThread() {
}
}
});
});
}
void Server::stopThread(){
void Server::stopThread() {
m_ServerRunning = false;
if(m_Thread.joinable())
if (m_Thread.joinable())
m_Thread.join();
}
@@ -55,7 +55,7 @@ bool Server::start(std::uint16_t port) {
}
void Server::stop() {
if(!m_ServerRunning)
if (!m_ServerRunning)
return;
stopThread();