Compiler Warning (level 1) C4114

same type qualifier used more than once

A type qualifier (const, volatile, signed, or unsigned) was used more than once in the same type declaration or definition.

The second occurrence of the qualifier was ignored. This is a warning when Microsoft extensions are enabled (/Ze) and an error when extensions are disabled (/Za).

The following is an example of this warning:

volatile volatile int i;   // warning