忽略皮棉中的警告

时间:2020-04-01 10:55:14

标签: c++ c lint

我们在项目中使用PC-Lint来查找项目中的任何警告。我想忽略对特定规则的特定警告,我遍历了有关如何抑制该警告的皮棉文档,我使用了以下所示的多种方法。

First method of ignoring the lint warning

second method of ignoring the lint warning

我还有其他多种方法,如下所示

//lint -e{551}
static ui16 new_var



static ui16 new_var  /* lint !e551 */


#define Suppress(n)

Suppress(551)
static ui16 new_var

但没有一种方法有效,我仍然收到警告,如果有人可以告诉我我在做什么错,将不胜感激。

0 个答案:

没有答案