1
vote
What are the consequences of ignoring: warning: unused parameter
It means you wrote a function that takes a parameter but doesn't use the parameter. It's harmless but it might indicate bugs in some cases.
Generally you can silence this warning by removi …
