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 |
|
|
9301d660-d601-464e-83f5-7ed844a3c6dc |
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).
// C4228.cpp
// compile with: /W1
int j, const i = 0; // C4228
int k;
int const m = 0; // ok
int main()
{
}