forked from OSchip/llvm-project
Attempt to fix windows buildbots after r293172.
llvm-svn: 293173
This commit is contained in:
parent
dc662ff047
commit
b222431144
|
@ -129,7 +129,7 @@ public:
|
|||
/// Construct a new operand predicate and add it to the matcher.
|
||||
template <class Kind, class... Args>
|
||||
Kind &addPredicate(Args&&... args) {
|
||||
Predicates.emplace_back(make_unique<Kind>(std::forward<Args...>(args)...));
|
||||
Predicates.emplace_back(llvm::make_unique<Kind>(std::forward<Args...>(args)...));
|
||||
return *static_cast<Kind *>(Predicates.back().get());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue