In my current program I have a function already defined as
void functionName( const customClass object );
Now, in the code for this function, this object is not used. I don't have permission to to remove the parameter, nor can I remove the unused parameter
warning.
Is there a statement I can execute with this object (customClass doesn't have any functions which I can run here), so that this warning doesn't happen?