读书人

GCC出现warning: integer constant is

发布时间: 2012-10-24 14:15:58 作者: rapoo

GCC出现warning: integer constant is too large for 'long' type"

The warning message can be safely ignored, as mb-gcc is not doing anything wrong; the 64-bit computing is in fact correct.

This warning occurs because gcc is strict in syntax and requires LL on the end of such constants. This warning message disappears if the integer is appended with LL.

long long int test = 0x0008888000000000LL;

http://mazaoliang.blog.163.com/blog/static/138455093201151603823383/


读书人网 >编程

热点推荐