From 09541d514dd18bf86f673d3784d406236fcbdad8 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Mon, 27 Nov 2023 09:51:26 +0800 Subject: build(IWYU): replace public-to-public mappings with pragmas (#26237) --- src/clint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/clint.py') diff --git a/src/clint.py b/src/clint.py index ee2f3cc00f..6e4d419b38 100755 --- a/src/clint.py +++ b/src/clint.py @@ -1090,7 +1090,7 @@ def CheckIncludes(filename, lines, error): return for i, line in enumerate(lines): - matched = Match(r'#\s*include\s*"([^"]*)"$', line) + matched = Match(r'#\s*include\s*"([^"]*)"', line) if matched: name = matched.group(1) if (not name.endswith('.h.generated.h') and -- cgit