Compiler Warning (level 1) C4393
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) C4393.
var' : const has no effect on literal data member; ignored
A literal data member was also specified as const. Since a literal data member implies const, you do not need to add const to the declaration.
The following sample generates C4393:
// C4393.cpp
// compile with: /clr /W1 /c
ref struct Y1 {
literal const int staticConst = 10; // C4393
literal int staticConst2 = 10; // OK
};
Show: