GCC:是否可以禁用“枚举器列表末尾的逗号”? 使用 -pedantic 时发出警告?

发布于 2024-07-25 07:11:03 字数 252 浏览 4 评论 0原文

我正在编译 C++ 代码,并且想启用 -pedantic 选项。
我正在使用 GCC 4.0,在 Mac OS X Leopard 上运行 Xcode。
例如,可以允许使用 -pedantic(使用 -Wno-variadic-macros 和 -Wno-long-long)时通常禁止的可变参数宏和 long long 类型。 但我找不到任何东西来禁用“枚举器列表末尾的逗号”警告。
是否可以?

谢谢。

I'm compiling C++ code and I'd like to enable the -pedantic option.
I'm using GCC 4.0, running Xcode on Mac OS X Leopard.
It is for example possible to allow variadic macros and the long long type that are normally forbidden when using -pedantic (with -Wno-variadic-macros and -Wno-long-long).
But I could not find anything to disable the "comma at end of enumerator list" warning.
Is it possible?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

就是爱搞怪 2024-08-01 07:11:03

枚举器末尾的逗号在 C99 中有效,但在 C89 中无效,因此,如果您的代码有效 C99,则以下内容将有效

gcc -std=c99 -pedantic foo.c

我相当确定它在 C++ 中根本无效(根据 g++)

编辑:测试了此在 HP-UX 上使用 GCC 4.2.1,它可以正常工作,没有错误/警告
foo.c

int main(int argc, char** argv) {
    enum { A, B, };
    return 0;
}


gcc -std=c99 -pedantic foo.c

A comma at the end of an enumerator is valid in C99 but not in C89, so the following will work providing your code is valid C99

gcc -std=c99 -pedantic foo.c

I'm fairly sure that it's not valid in C++ (according to g++) at all

Edit: tested this with GCC 4.2.1 on HP-UX and it works with no errors / warnings
foo.c

int main(int argc, char** argv) {
    enum { A, B, };
    return 0;
}


gcc -std=c99 -pedantic foo.c
柠檬色的秋千 2024-08-01 07:11:03

在 C++ 中,尚无法禁用它,尽管它在 C++11 中是合法的。
所以将来,当GCC被修正时,-std=c++11应该禁用它。

-std=c99 仅适用于 C,不适用于 C++(如问题中所示)。

In C++ it is not yet possible to disable it, even though it legal in C++11.
So in the future, when GCC is corrected, -std=c++11 should disable it.

-std=c99 only works in C, not C++ (as in the question).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文