aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/clangparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/clangparser.h')
-rw-r--r--src/plugins/projectexplorer/clangparser.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/clangparser.h b/src/plugins/projectexplorer/clangparser.h
index 0c7adaba8d..8dd311cd66 100644
--- a/src/plugins/projectexplorer/clangparser.h
+++ b/src/plugins/projectexplorer/clangparser.h
@@ -38,11 +38,14 @@ class PROJECTEXPLORER_EXPORT ClangParser : public ProjectExplorer::GccParser
public:
ClangParser();
- void stdError(const QString &line) override;
- static Core::Id id();
+ static QList<Utils::OutputLineParser *> clangParserSuite();
+
+ static Utils::Id id();
private:
+ Result handleLine(const QString &line, Utils::OutputFormat type) override;
+
QRegularExpression m_commandRegExp;
QRegularExpression m_inLineRegExp;
QRegularExpression m_messageRegExp;