Not
Åtkomst till denna sida kräver auktorisation. Du kan prova att logga in eller byta katalog.
Åtkomst till denna sida kräver auktorisation. Du kan prova att byta katalog.
#pragma (pop,...) : did not find previously pushed identifier 'identifier'
Remarks
A pragma statement in your source code tries to pop an identifier that has not been pushed. To avoid this warning, be sure that the identifier being popped has been properly pushed.
Example
The following example generates C4160 and shows how to fix it:
// C4160.cpp
// compile with: /W1
#pragma pack(push)
#pragma pack(pop, id) // C4160
// use identifier when pushing to resolve the warning
// #pragma pack(push, id)
int main() {
}