nonstandard extension used : 'keyword' is an obsolete keyword
The current version of Visual C++ does not use this keyword.
Possible cause
This warning is automatically promoted to an error. If you wish to modify this behavior, use #pragma warning. For example, to make C4226 into a level 2 warning issue,
#pragma warning(2:4226)
in your source code file.