We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e14f9b commit b58a0aeCopy full SHA for b58a0ae
clang-tools-extra/clang-tidy/tool/clang-tidy-diff.py
@@ -247,7 +247,7 @@ def main():
247
filename = None
248
lines_by_file = {}
249
for line in sys.stdin:
250
- match = re.search('^\\+\\+\\+\\ "?(.*?/){%s}([^ \t\n"]*)' % args.p, line)
+ match = re.search(r'^\+\+\+\ "?(.*?/){%s}([^ \t\n"]*)' % args.p, line)
251
if match:
252
filename = match.group(2)
253
if filename is None:
0 commit comments