如何在 Eclipse 中禁用警告 "No break at the end of case"?

How to disable warning "No break at the end of case" in Eclipse?

我正在使用 Eclipse (Luna SR 2) 编写 C++ 应用程序。如何禁用 "No break at the end of case" 编译警告,最好是针对特定代码段?这很烦人,因为我们的编码标准要求零警告,我希望我的案例失败,所以我不必不必要地重复代码。有没有办法用编译指示来做到这一点?

输入 //no break 应该没问题。

如果你想改变它,你可以尝试去:Window -> Preferences -> C/C++ -> Code Analysis 然后选择 No break at the end of case 并将 //no break 编辑为您想要的内容。

我发现 this Whosebug 问题,应该可以回答您的问题。

希望你觉得这有用,

亚历克斯