aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2020-04-29 13:50:37 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2020-05-04 08:38:53 +0000
commitabd3791bfeb2c775dc04d8b5266f2dc3f07bc289 (patch)
treed29f9abffbdb4e56b15136fd1a6ab3f7c75b5199 /src/plugins
parent0ce0ca0f36d385590eacb5c77f888966c6bef153 (diff)
ClangParser: Add missing linkification
Change-Id: I3e2af435a0656e72f2315cf58e2617c59623c97c Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/projectexplorer/clangparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/clangparser.cpp b/src/plugins/projectexplorer/clangparser.cpp
index 4df1d5bff7a..1ea867ca6d4 100644
--- a/src/plugins/projectexplorer/clangparser.cpp
+++ b/src/plugins/projectexplorer/clangparser.cpp
@@ -101,7 +101,7 @@ OutputLineParser::Result ClangParser::handleLine(const QString &line, OutputForm
LinkSpecs linkSpecs;
addLinkSpecForAbsoluteFilePath(linkSpecs, filePath, lineNo, match, 1);
newTask(CompileTask(taskType(match.captured(7)), match.captured(8), filePath, lineNo));
- return Status::InProgress;
+ return {Status::InProgress, linkSpecs};
}
match = m_codesignRegExp.match(lne);