Skip to content

Commit

Permalink
[Monitor] Fix warnings (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
MFransen69 authored Feb 11, 2025
1 parent cf4fd04 commit 50cb625
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Monitor/Monitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -766,15 +766,17 @@ POP_WARNING()
}
}
}
void Deactivated (const string& callsign, PluginHost::IShell* service) override
void Deactivated (const string&, PluginHost::IShell*) override
{
}
void Unavailable(const string&, PluginHost::IShell*) override
{
}
void Initialize(const string& callsign, PluginHost::IShell* service) override{
void Initialize(const string&, PluginHost::IShell*) override
{
}
void Deinitialized(const string& callsign, PluginHost::IShell* service) override{
void Deinitialized(const string& callsign, PluginHost::IShell* service) override
{
/* See comment in the Dispatch method on why no locking is here to protect the _monitor member */
MonitorObjectContainer::iterator index(_monitor.find(callsign));

Expand Down

0 comments on commit 50cb625

Please sign in to comment.