Fix unused variable warnings in ntcore (#1416)

This avoids -Wextra warnings.
This commit is contained in:
Austin Schuh
2018-11-09 20:02:58 -08:00
committed by Peter Johnson
parent 7c9a3c4d77
commit ac751d3224
4 changed files with 9 additions and 8 deletions

View File

@@ -22,8 +22,8 @@ class ConnectionNotifierThread
public:
explicit ConnectionNotifierThread(int inst) : m_inst(inst) {}
bool Matches(const ListenerData& listener,
const ConnectionNotification& data) {
bool Matches(const ListenerData& /*listener*/,
const ConnectionNotification& /*data*/) {
return true;
}