A commercial software static analysis tool produced by Vector Informatik (originally by Gimpel Software) for the C and C++ languages. PC-lint examines C or C++ programs and finds potential problem areas. PC-lint can look across several modules which allows it to determine issues that a compiler normally does not point out. Options also exist for the detection of MISRA rule violations. This tag is for questions regarding the usage of PC-lint/PC lint Plus.
Questions tagged [pc-lint]
137 questions
-1
votes
2 answers
Pc Lint + Eigen library
i try to use PCLint with c++ .
I'm using the Eigen header only library which is defined as include directory in my cmake file. I tried following command :
lint-nt.exe std.lnt -i"pathToEigenLibrary" "listOfFileToLint"
the problem is I have no idea…

Hunk
- 479
- 11
- 33
-2
votes
1 answer
how to skip all the lint errors for a C file
how to skip all the lint errors for a C file?
Is there any way to skip all the lint errors for specific file with any options?
I am able to skip individual error with below option:
/*lint -save -e40 */
*lint -restore */

Hjey
- 1