aboutsummaryrefslogtreecommitdiffstats
path: root/src/tools/clangpchmanagerbackend/source/pchtask.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clangpchmanagerbackend/source/pchtask.h')
-rw-r--r--src/tools/clangpchmanagerbackend/source/pchtask.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/clangpchmanagerbackend/source/pchtask.h b/src/tools/clangpchmanagerbackend/source/pchtask.h
index c94d7ac8164..528d6e63f13 100644
--- a/src/tools/clangpchmanagerbackend/source/pchtask.h
+++ b/src/tools/clangpchmanagerbackend/source/pchtask.h
@@ -41,7 +41,7 @@ class PchTask
public:
PchTask(Utils::SmallString &&projectPartId,
FilePathIds &&includes,
- FilePathIds &&allIncludes,
+ FilePathIds &&sources,
CompilerMacros &&compilerMacros,
Utils::SmallStringVector &&usedMacros,
Utils::SmallStringVector toolChainArguments,
@@ -52,7 +52,7 @@ public:
Utils::LanguageExtension languageExtension = Utils::LanguageExtension::None)
: projectPartIds({projectPartId})
, includes(includes)
- , allIncludes(allIncludes)
+ , sources(sources)
, compilerMacros(compilerMacros)
, systemIncludeSearchPaths(std::move(systemIncludeSearchPaths))
, projectIncludeSearchPaths(std::move(projectIncludeSearchPaths))
@@ -64,7 +64,7 @@ public:
PchTask(Utils::SmallStringVector &&projectPartIds,
FilePathIds &&includes,
- FilePathIds &&allIncludes,
+ FilePathIds &&sources,
CompilerMacros &&compilerMacros,
Utils::SmallStringVector &&usedMacros,
Utils::SmallStringVector toolChainArguments,
@@ -75,7 +75,7 @@ public:
Utils::LanguageExtension languageExtension = Utils::LanguageExtension::None)
: projectPartIds(std::move(projectPartIds))
, includes(includes)
- , allIncludes(allIncludes)
+ , sources(sources)
, compilerMacros(compilerMacros)
, systemIncludeSearchPaths(std::move(systemIncludeSearchPaths))
, projectIncludeSearchPaths(std::move(projectIncludeSearchPaths))
@@ -104,7 +104,7 @@ public:
FilePath systemPchPath;
Utils::SmallStringVector projectPartIds;
FilePathIds includes;
- FilePathIds allIncludes;
+ FilePathIds sources;
CompilerMacros compilerMacros;
IncludeSearchPaths systemIncludeSearchPaths;
IncludeSearchPaths projectIncludeSearchPaths;