Skip to content
This repository was archived by the owner on Mar 28, 2020. It is now read-only.

Commit dbafc59

Browse files
committed
Attempt to fix windows buildbots after r293172.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293173 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 2b464c4 commit dbafc59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/TableGen/GlobalISelEmitter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ template <class PredicateTy> class PredicateListMatcher {
129129
/// Construct a new operand predicate and add it to the matcher.
130130
template <class Kind, class... Args>
131131
Kind &addPredicate(Args&&... args) {
132-
Predicates.emplace_back(make_unique<Kind>(std::forward<Args...>(args)...));
132+
Predicates.emplace_back(llvm::make_unique<Kind>(std::forward<Args...>(args)...));
133133
return *static_cast<Kind *>(Predicates.back().get());
134134
}
135135

0 commit comments

Comments
 (0)