Skip to content

Commit

Permalink
tests: fix misc-unused-parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
MiKom committed Jul 18, 2024
1 parent c77a507 commit e2541ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/auto/foundation/object/tst_object.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ class EventObject : public Object
bool m_timerEventDelivered = false;

protected:
void timerEvent(TimerEvent *ev) override
void timerEvent(TimerEvent * /*ev*/) override
{
m_timerEventDelivered = true;
}

void userEvent(Event *ev) override
void userEvent(Event * /*ev*/) override
{
m_userEventDelivered = true;
}
Expand Down

0 comments on commit e2541ea

Please sign in to comment.