Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 634 Bytes

compiler-warning-level-1-c4068.md

File metadata and controls

22 lines (19 loc) · 634 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4068
Compiler Warning (level 1) C4068
11/04/2016
C4068
C4068
96a7397a-4eab-44ab-b3bb-36747503f7e5

Compiler Warning (level 1) C4068

unknown pragma

The compiler ignored an unrecognized pragma. Be sure the pragma is allowed by the compiler you are using. The following sample generates C4068:

// C4068.cpp
// compile with: /W1
#pragma NotAValidPragmaName   // C4068, use valid name to resolve
int main()
{
}