#define QUOTA (5*1024*1024*1024) uint64_t ui64 = QUOTA;
gcc编译器会报出:warning: integer overflow in expression,你发现哪里出问题了?以此为戒!
时间: 2024-10-06 15:45:03
#define QUOTA (5*1024*1024*1024) uint64_t ui64 = QUOTA;
gcc编译器会报出:warning: integer overflow in expression,你发现哪里出问题了?以此为戒!