aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/clangtools/clangtoolrunner.cpp
diff options
context:
space:
mode:
authorJarek Kobus <[email protected]>2023-01-10 18:23:24 +0100
committerJarek Kobus <[email protected]>2023-01-11 09:15:38 +0000
commit017ceef3b0e5874575aa39e8a902cd54dbda55fb (patch)
treef7a859d93e289b53654264939d89c908bc420c2a /src/plugins/clangtools/clangtoolrunner.cpp
parent511dc801b51022ccfccb66d54de919f6c31e07e8 (diff)
ClangToolRunner: Make overlayFilePath a member of AnalyzeInputData
Get rid of setVFSOverlay(). Change-Id: I0f406994f78523c40a5d2f2262f25c9b2c5a5442 Reviewed-by: <[email protected]> Reviewed-by: David Schulz <[email protected]>
Diffstat (limited to 'src/plugins/clangtools/clangtoolrunner.cpp')
-rw-r--r--src/plugins/clangtools/clangtoolrunner.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/clangtools/clangtoolrunner.cpp b/src/plugins/clangtools/clangtoolrunner.cpp
index cc8a253df32..7ce56a6ed2d 100644
--- a/src/plugins/clangtools/clangtoolrunner.cpp
+++ b/src/plugins/clangtools/clangtoolrunner.cpp
@@ -90,6 +90,7 @@ ClangToolRunner::ClangToolRunner(const AnalyzeInputData &input, QObject *parent)
<< "--"
<< clangArguments(input.config, baseOptions);
};
+ m_overlayFilePath = input.overlayFilePath;
m_outputDirPath = input.outputDirPath;
QTC_CHECK(!m_outputDirPath.isEmpty());