这是什么警告?它似乎警告了内置的长长常数。这是GCC版本4.7.3(Ubuntu / Linaro 4.7.3-1ubuntu1)。
In file included from ../include/log4cplus/helpers/stringhelper.h:36:0,
from ../tests/performance_test/main.cxx:6:
<built-in>:1:2: warning: use of C++0x long long integer constant [-Wlong-long]
答案 0 :(得分:0)
您可以使用新的C ++ 11标准,正如Daniel Fischer建议的那样。但是,如果您正在交叉编译或只是使用较旧的编译器:
-Wno-long-long
是一个有效的编译器标志,它会禁止警告(当然只是来自man gcc
)。