Code changes after analyzer

This commit is contained in:
stephb9959
2022-03-25 09:39:23 -07:00
parent e6f46eb51f
commit 41c42a92e9
23 changed files with 102 additions and 112 deletions

View File

@@ -39,11 +39,11 @@ namespace OpenWifi {
return instance_;
}
void Daemon::initialize() {
void Daemon::initialize([[maybe_unused]] Poco::Util::Application &self) {
std::cout << "Daemon initializing" << std::endl;
}
void MicroServicePostInitialization() {
Daemon()->initialize();
}
}