Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 621 Bytes

compiler-warning-level-4-c4918.md

File metadata and controls

24 lines (20 loc) · 621 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 4) C4918
Compiler Warning (level 4) C4918
11/04/2016
C4918
C4918
1bcf6d35-3467-4aa8-b2ef-cb33f4e70238

Compiler Warning (level 4) C4918

'character' : invalid character in pragma optimization list

An unknown character was found in the optimization list of an optimize pragma statement.

For example, the following statement generates C4918:

// C4918.cpp
// compile with: /W4
#pragma optimize("X", on) // C4918 expected
int main()
{
}