'identifier' : unreferenced formal parameter
The formal parameter is not referenced in the body of the function. The unreferenced parameter is ignored. The following sample generates C4100:
void func(int i) { // C4100, delete the unreferenced parameter to //resolve the warning } void main() { func(1); }