Supress tons of warning from triggers (#4565)

This commit is contained in:
Andrey G 2022-09-11 22:25:58 +03:00 committed by GitHub
parent 8069506135
commit e2addd1951
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -144,8 +144,8 @@ protected:
// - Saw a sync point but the wrong number of events in the cycle
virtual void onTriggerError() { }
virtual void onNotEnoughTeeth(int actual, int expected) { }
virtual void onTooManyTeeth(int actual, int expected) { }
virtual void onNotEnoughTeeth(int, int) { }
virtual void onTooManyTeeth(int, int) { }
private:
void resetCurrentCycleState();