R
Rui Maciel
I have an abstract base class which defines an interface to a function which takes 3 arguments.
From that ABC I define a set of derived classes which implements the base class' interface. The
thing is, some derived classes don't use some of the parameters, which causes the compiler to throw
warnings. As I'm not using those parameters intentionally, those warnings tend to be a bit
annoying.
So, does anyone happen to know a good standard way to get the compiler to stop warning about those
specific instances where a parameter isn't used?
Thanks in advance,
Rui Maciel
From that ABC I define a set of derived classes which implements the base class' interface. The
thing is, some derived classes don't use some of the parameters, which causes the compiler to throw
warnings. As I'm not using those parameters intentionally, those warnings tend to be a bit
annoying.
So, does anyone happen to know a good standard way to get the compiler to stop warning about those
specific instances where a parameter isn't used?
Thanks in advance,
Rui Maciel