From 53e9a1492621f7f49d122f5e88b5ca1ff7a808f1 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Tue, 13 Nov 2018 11:28:46 +0000 Subject: [PATCH] Add bracket that was lost in rL346727 and has been causing buildbot failures for some time. llvm-svn: 346752 --- examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp b/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp index 76162ae444d..8cbd5d6f2f7 100644 --- a/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp +++ b/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp @@ -680,7 +680,7 @@ static std::unique_ptr ParseTopLevelExpr(unsigned ExprCount) { if (auto E = ParseExpression()) { // Make an anonymous proto. auto Proto = llvm::make_unique - ("__anon_expr" + Twine(ExprCount)).str(), std::vector()); + (("__anon_expr" + Twine(ExprCount)).str(), std::vector()); return llvm::make_unique(std::move(Proto), std::move(E)); } return nullptr;