Compiler Warning (level 4) C4690
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 4) C4690.
emitidl( pop ) ] : more pops than pushes
The emitidl attribute was popped one more time that it was pushed.
The following sample generates C4690.
// C4690.cpp
// compile with: /c /W4
[emitidl(pop)]; // C4690
class x {};
Show: