Compiler Warning (level 4) C4235

nonstandard extension used : 'keyword' keyword not supported on this architecture

The compiler does not support the keyword you used.

For example, the _asm keyword is not supported for the Itanium Processor Family (IPF) compiler. All assembly code must be written in a separate file or should be used through an intrinsic. See Intrinsics Available on Intel 64-bit Platforms for more information.

This warning is automatically promoted to an error. If you wish to modify this behavior, use #pragma warning. For example, to make C4235 into a level 2 warning, use the following line of code

#pragma warning(2:4235)

in your source code file.