diff options
-rwxr-xr-x | bin/find-unneeded-includes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/find-unneeded-includes b/bin/find-unneeded-includes index 4196640e5d2b..7f221e646e14 100755 --- a/bin/find-unneeded-includes +++ b/bin/find-unneeded-includes @@ -155,7 +155,7 @@ def processIWYUOutput(iwyuOutput, moduleRules): toRemove.append("%s:%s: %s" % (currentFileName, lineno, include)) continue - match = re.match("- (.*); // lines (.*)-.*", line) + match = re.match("- (.*;(?: })*)* // lines (.*)-.*", line) if match: fwdDecl = match.group(1) lineno = match.group(2) |