Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 708 Bytes

compiler-warning-level-1-c4602.md

File metadata and controls

22 lines (19 loc) · 708 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4602
Compiler Warning (level 1) C4602
11/04/2016
C4602
C4602
c1f0300f-e2a2-4c9e-a7c3-4c7318d10509

Compiler Warning (level 1) C4602

#pragma pop_macro : 'macro name' no previous #pragma push_macro for this identifier

If you use pop_macro for a particular macro, you must first have passed that macro name to push_macro. For example, the following sample generates C4602:

// C4602.cpp
// compile with: /W1
int main()
{
   #pragma pop_macro("x")   // C4602 x is not on the stack
}