Attempt to fix windows buildbots after r293172.

llvm-svn: 293173
This commit is contained in:
Daniel Sanders 2017-01-26 11:23:49 +00:00
parent dc662ff047
commit b222431144
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}