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 8703010 commit 16d5e4aCopy full SHA for 16d5e4a
ament_clang_tidy/ament_clang_tidy/main.py
@@ -219,7 +219,7 @@ def start_subprocess(full_cmd):
219
# (\/home\/^[^:]*) : Group capture. Everything from `/home/` up until a `:`.
220
# (\d+) : Group capture. Grabs line number.
221
# (\d+) : Group capture. Grabs column number.
222
- # (?:warning:|error:note:) : Non-capturing group. Matches warning, error, note.
+ # (?:warning:|error:|note:) : Non-capturing group. Matches warning, error, note.
223
# \[(.*)\] : Matches and captures [<rule_name>]. Ignores any messages from clang_tidy without an ending [<rule_name>].
224
error_re = re.compile('\\s*\^?\/home\/([^:]*):(\\d+):(\\d+): (?:warning:|error:|note:).*\\[(.*)\\]')
225
0 commit comments