bjosv wrote: > It would be nice to test all versions of C language.
I don't think this checker handles C version before C23 currently (see issue #127384) . The C23 AST gives `CXXBoolLiteralExpr` for `true`/`false`, which this checker uses, while e.g. C99 only has `IntegerLiteral`. https://github.com/llvm/llvm-project/pull/178392 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
