Compiler Warning (level 1) C4237
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 1) C4237.
keyword' keyword is not yet supported, but reserved for future use
A keyword in the C++ specification is not implemented in the Visual C++ compiler, but the keyword is not available as a user-defined symbol.
The following sample generates C4237:
// C4237.cpp // compile with: /W1 /c int export; // C4237
Show: