We recommend using Visual Studio 2017
This documentation is archived and is not being maintained.
Compiler Warning (level 1) C4659
Visual Studio 2012
#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: