From 828dab341a1099d7f49bf7f05b0a3ad031adf7e8 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 --- llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp b/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp index 76162ae..8cbd5d6 100644 --- a/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp +++ b/llvm/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; -- 2.7.4