我们在项目中使用PC-Lint来查找项目中的任何警告。我想忽略对特定规则的特定警告,我遍历了有关如何抑制该警告的皮棉文档,我使用了以下所示的多种方法。
我还有其他多种方法,如下所示
//lint -e{551}
static ui16 new_var
static ui16 new_var /* lint !e551 */
#define Suppress(n)
Suppress(551)
static ui16 new_var
但没有一种方法有效,我仍然收到警告,如果有人可以告诉我我在做什么错,将不胜感激。