[analyzer] A speculative fix for buildbot failures in the new SymbolReaperTest.

I expect an xvalue to be easier to convert.

llvm-svn: 351505
This commit is contained in:
Artem Dergachev 2019-01-18 01:37:14 +00:00
parent ea512d629a
commit 1407b71dce
1 changed files with 1 additions and 2 deletions

View File

@ -105,8 +105,7 @@ public:
SuperRegionLivenessAction() {}
std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &Compiler,
StringRef File) override {
auto Consumer = llvm::make_unique<SuperRegionLivenessConsumer>(Compiler);
return Consumer;
return llvm::make_unique<SuperRegionLivenessConsumer>(Compiler);
}
};