Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 681 Bytes

compiler-warning-level-1-c4228.md

File metadata and controls

26 lines (22 loc) · 681 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4228
Compiler Warning (level 1) C4228
11/04/2016
C4228
C4228
9301d660-d601-464e-83f5-7ed844a3c6dc

Compiler Warning (level 1) C4228

nonstandard extension used : qualifiers after comma in declarator list are ignored

Use of qualifiers like const or volatile after a comma when declaring variables is a Microsoft extension (/Ze).

Example

// C4228.cpp
// compile with: /W1
int j, const i = 0;  // C4228
int k;
int const m = 0;  // ok
int main()
{
}