Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
unknown pragma
Remarks
The compiler ignored an unrecognized pragma. Be sure the pragma is allowed by the compiler you are using.
Example
The following example generates C4068:
// C4068.cpp
// compile with: /W1
#pragma NotAValidPragmaName // C4068, use valid name to resolve
int main()
{
}