Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
#pragma pop_macro : 'macro name' no previous #pragma push_macro for this identifier
Remarks
If you use pop_macro for a particular macro, you must first have passed that macro name to push_macro.
Example
For example, the following example generates C4602:
// C4602.cpp
// compile with: /W1
int main()
{
#pragma pop_macro("x") // C4602 x is not on the stack
}