Compiler Warning (level 4) C4235
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Warning (level 4) C4235.
nonstandard extension used : 'keyword' keyword not supported on this architecture
The compiler does not support the keyword you used.
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.
Show: