nonstandard extension used : qualifiers after comma in declarator list are ignored
You should not use qualifiers like const or volatile after the comma when delcaring variables. The following example shows the error:
int j, const i = 0; /* warning C4228 */
To fix the problem, rewrite the example as:
int j;
int const i = 0;