From dbafc59fbfac967d5b0fe2aa76a4a28c4e369633 Mon Sep 17 00:00:00 2001 From: Daniel Sanders Date: Thu, 26 Jan 2017 11:23:49 +0000 Subject: [PATCH] Attempt to fix windows buildbots after r293172. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293173 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/TableGen/GlobalISelEmitter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/TableGen/GlobalISelEmitter.cpp b/utils/TableGen/GlobalISelEmitter.cpp index 8f1ce9b323f..c5094cda430 100644 --- a/utils/TableGen/GlobalISelEmitter.cpp +++ b/utils/TableGen/GlobalISelEmitter.cpp @@ -129,7 +129,7 @@ public: /// Construct a new operand predicate and add it to the matcher. template Kind &addPredicate(Args&&... args) { - Predicates.emplace_back(make_unique(std::forward(args)...)); + Predicates.emplace_back(llvm::make_unique(std::forward(args)...)); return *static_cast(Predicates.back().get()); } -- 2.40.0