'identifier' : local variable is initialized but not referenced
A variable is declared and initialized but not used. The following sample generates C4189:
void main() { int a = 1; // C4189, remove declaration to resolve }