1

这个警告是关于什么的?它似乎在警告内置插件中的 long long 常量。这是来自 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]
4

1 回答 1

1

您可以按照 Daniel Fischer 的建议使用新的 C++11 标准。但是,如果您正在交叉编译或只有较旧的编译器:

-Wno-long-long

是一个有效的编译器标志,它将禁止警告(当然只是从man gcc)。

于 2013-05-14T23:06:47.200 回答