I would like to do it in agui, just wondering if you have problem with that.
This happens in empty function in top class where parameters are not used, like:
virtual void mouseDownCB(MouseEvent &mouseEvent) {}
would change to
virtual void mouseDownCB(MouseEvent &) {}
in cases where it would hurt readability, like
virtual void valueChanged(Slider* source, int value) {}
it could be changed to
virtual void valueChanged(Slider* source, int value)
{
(void)(source);
(void)(value);
}
Original issue reported on code.google.com by kovarex on 31 Jul 2012 at 11:25
Original issue reported on code.google.com by
kovarex
on 31 Jul 2012 at 11:25