C++: Remove unused find predicate

This commit is contained in:
Simon Friis Vindum
2026-03-24 15:54:46 +01:00
parent c67122b3f1
commit 8cb5380d84

View File

@@ -31,8 +31,6 @@ private class SourceExpr extends Expr {
SourceExpr() { this.getFile() instanceof RelevantFile }
}
predicate find(SourceExpr e) { not hasGoodType(e) }
private predicate hasGoodType(Expr e) { not e.getType() instanceof ErroneousType }
module ExprTypeStats implements StatsSig {