File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ class CachingOutputs {
244
244
clang::cas::CompileJobCacheResult::Builder CachedResultBuilder;
245
245
std::string OutputFile;
246
246
std::string DependenciesFile;
247
- std::unique_ptr<cas::CachingDiagnosticsProcessor> DiagProcessor;
247
+ std::unique_ptr<clang:: cas::CachingDiagnosticsProcessor> DiagProcessor;
248
248
};
249
249
250
250
// / Store and retrieve compilation artifacts using \p llvm::cas::ObjectStore and
@@ -551,8 +551,8 @@ CachingOutputs::CachingOutputs(CompilerInstance &Clang,
551
551
OutputFile = fixupRelativePath (FrontendOpts.OutputFile , FM);
552
552
DependenciesFile =
553
553
fixupRelativePath (Invocation.getDependencyOutputOpts ().OutputFile , FM);
554
- DiagProcessor =
555
- std::make_unique<cas::CachingDiagnosticsProcessor>( PrefixMapper, FM);
554
+ DiagProcessor = std::make_unique<clang::cas::CachingDiagnosticsProcessor>(
555
+ PrefixMapper, FM);
556
556
}
557
557
558
558
Expected<bool > ObjectStoreCachingOutputs::tryReplayCachedResult (
You can’t perform that action at this time.
0 commit comments