如何从GCC中消除长整数常数警告

时间:2015-11-11 04:43:50

标签: c++ c++11 gcc gcc-warning long-long

我有一些使用大整数文字的代码如下:

if(nanoseconds < 1'000'000'000'000)

这给编译器警告integer constant is too large for 'long' type [-Wlong-long]。但是,如果我将其更改为:

if(nanoseconds < 1'000'000'000'000ll)

...而是收到警告use of C++11 long long integer constant [-Wlong-long]

我想为此行禁用此警告,但不禁用整个项目的-Wlong-long或使用-Wno-long-long。我试过围绕它:

#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wlong-long"
...
#pragma GCC diagnostic pop

但这似乎不适用于此警告。还有什么我可以尝试的吗?

我正在使用-std=gnu++1z构建。

编辑:评论的最小示例:

#include <iostream>
auto main()->int {
  double nanoseconds = 10.0;
  if(nanoseconds < 1'000'000'000'000ll) {
    std::cout << "hello" << std::endl;
  }
  return EXIT_SUCCESS;
}

使用g++ -std=gnu++1z -Wlong-long test.cpp构建test.cpp:6:20: warning: use of C++11 long long integer constant [-Wlong-long]

我应该提到这是在一个32位平台上,Windows使用MinGW-w64(gcc 5.1.0) - 第一个警告似乎没有出现在我的64位Linux系统上,而是第二个(带有ll后缀)出现在两者上。

1 个答案:

答案 0 :(得分:3)

使用ll后缀时,似乎C ++ 11警告可能是a gcc bug。 (谢谢@praetorian)

一种解决方法(受@ nate-eldredge评论的启发)是避免使用文字,并在编译时使用constexpr生成:

int64_t constexpr const trillion = int64_t(1'000'000) * int64_t(1'000'000);
if(nanoseconds < trillion) ...