Skip to content

Commit

Permalink
parse C++ template instanciation and inclusion traces
Browse files Browse the repository at this point in the history
  • Loading branch information
doudou committed Mar 9, 2018
1 parent 26581bc commit f875b8a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
30 changes: 30 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,36 @@
"message": 5
}
},
{
"name": "autoproj-gcc-compile-template-expansion",
"severity": "error",
"owner": "autoproj",
"fileLocation": [
"absolute"
],
"pattern": {
"regexp": "(?:Autobuild::CMake|Autobuild::Orogen):(?:[^:]+):build: (.+):(\\d+):(\\d+):\\s+(required from .+)",
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
},
{
"name": "autoproj-gcc-compile-file-inclusion",
"severity": "error",
"owner": "autoproj",
"fileLocation": [
"absolute"
],
"pattern": {
"regexp": "(?:Autobuild::CMake|Autobuild::Orogen):(?:[^:]+):build: (In file included from (.+):(\\d+):(\\d+))",
"file": 2,
"line": 3,
"column": 4,
"message": 1
}
},
{
"name": "autoproj-gcc-compile-warning",
"owner": "autoproj",
Expand Down
2 changes: 2 additions & 0 deletions src/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ export class AutoprojProvider implements vscode.TaskProvider
'$autoproj-cmake-configure-warning',
'$autoproj-gcc-compile-error',
'$autoproj-gcc-compile-warning',
'$autoproj-gcc-compile-template-expansion',
'$autoproj-gcc-compile-file-inclusion',
'$autoproj-orogen-error'
];
return task;
Expand Down

0 comments on commit f875b8a

Please sign in to comment.