Compiler Warning (level 1) C4659
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) C4659.
pragma 'pragma' : use of reserved segment 'segment' has undefined behavior, use #pragma comment(linker, ...)
The .drectve option was used to pass an option to the linker. Instead use pragma comment for passing a linker option.
// C4659.cpp
// compile with: /W1 /LD
#pragma code_seg(".drectve") // C4659
Show: