IDE extension that lets you fix coding issues before they exist!
Setup is effortless and analysis is automatic for most languages
Fast, accurate analysis; enterprise scalability
Variable length arrays should have a well-defined, positive size.
void f1() { int n; int a[n]; // Noncompliant; n is undefined } void f2() { int n = 0; int a[n]; // Noncompliant; array of zero size }