Compiler Warning (level 1) C4618
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) C4618.
pragma parameters included an empty string; pragma ignored
A null string was given as an argument to a #pragma.
The pragma was processed without the argument.
The following sample generates C4618:
// C4618.cpp
// compile with: /W1 /LD
#pragma code_seg("") // C4618
Show: