MinidumpYAML: Fix ambiguity between std::make_unique and llvm::make_unique

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@358673 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer
2019-04-18 15:06:03 +00:00
parent efe33e6453
commit 93d2382218
+1 -1
View File
@@ -534,7 +534,7 @@ Stream::create(const Directory &StreamDesc, const object::MinidumpFile &File) {
Modules.push_back(
{M, std::move(*ExpectedName), *ExpectedCv, *ExpectedMisc});
}
return make_unique<ModuleListStream>(std::move(Modules));
return llvm::make_unique<ModuleListStream>(std::move(Modules));
}
case StreamKind::RawContent:
return llvm::make_unique<RawContentStream>(StreamDesc.Type,