Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个正在获取的代码PC Lint info 825,即使我正在使用/* fallthrough */评论。告诉我我的任何用法是否错误。
PC Lint info 825
/* fallthrough */
示例代码:
case 1: case 2: case 3: { statement; } /* fallthrough */ case 4: { statement 1; statement 2; break; } default: break;
那是错误的评论内容。尝试:
//lint -fallthrough
有关详细信息,请参阅巨大的文本文件。