Compiler Warning (level 4) C4092
sizeof returns 'unsigned long'
The operand of the sizeof
operator was very large, so sizeof
returned an unsigned long
. This warning occurs under the Microsoft extensions (/Ze
). Under ANSI compatibility (/Za
), the result is truncated instead.