Use this tag for the Clang Static Analyzer, an open source source code analysis tool which find bugs in C and Objective-C programs.
I'm running Clang 3.4 on Ubuntu 12.10 (from http://llvm.org/apt/). I ran the analyzer (clang --analyze) over some code, and …
c++ linux command-line clang clang-static-analyzerI recently started experimenting with the clang-tidy tool of llvm. Now I am trying to suppress false warnings from third …
suppress-warnings clang-static-analyzer clang-tidytldr;> How do I hide warnings from system headers in clang-tidy? I have the following minimal example source file, …
c++ clang clang-static-analyzer libtooling clang-tidyI'd basically like to achieve the same as http://blog.alexrp.com/2013/09/26/clangs-static-analyzer-and-automake, but with CMake. analyze_srcs = foo.c …
c++ cmake clang clang-static-analyzerThe Xcode 4 static analyzer reports in my code some false positives. Is there any way to suppress them?
objective-c xcode4 clang clang-static-analyzerI keep getting Clang errors on the following type of code and I can't figure out why they're erroneous or …
cocoa clang-static-analyzerFoo *oFoo = [[[Foo alloc] init] autorelease]; This is how I was taught to program in Objective C, yet the CLang …
objective-c clang-static-analyzer