Renamed DebugServers namespace to DebugServer

This commit is contained in:
Nav
2022-03-31 16:05:39 +01:00
parent e52ef609a4
commit ac9fad3726
58 changed files with 66 additions and 66 deletions

View File

@@ -390,12 +390,12 @@ namespace Bloom
}
void Application::startDebugServer() {
this->debugServer = std::make_unique<DebugServers::DebugServerComponent>(
this->debugServer = std::make_unique<DebugServer::DebugServerComponent>(
this->debugServerConfig.value()
);
this->debugServerThread = std::thread(
&DebugServers::DebugServerComponent::run,
&DebugServer::DebugServerComponent::run,
this->debugServer.get()
);