Compiler Warning (level 1) C4083

expected 'token'; found identifier 'identifier'

This warning is generated when the compiler is parsing a #pragma statement, and an identifier is found where it is not expected.

The following example generates this warning:

#pragma warning disable:4083   //warning
#pragma warning(disable:4083)   //correct

Check the syntax of the #pragma directives in order to fix the problem.