Node:Unused Arguments, Next:Surprising Interpretations of Code, Previous:Unwanted Variables, Up:Working Programs
As with unused variables, It is possible that unused arguments
to a procedure might indicate a bug.
Compile with -W -Wunused
option to catch cases of
unused arguments.
Note that -W
also enables warnings regarding overflow
of floating-point constants under certain circumstances.