mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Fix unused variable warnings in ntcore (#1416)
This avoids -Wextra warnings.
This commit is contained in:
committed by
Peter Johnson
parent
7c9a3c4d77
commit
ac751d3224
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user