1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

[RuntimeDyld] Fix an ambiguous make_unique call.

llvm-svn: 357950
This commit is contained in:
Lang Hames 2019-04-08 22:19:05 +00:00
parent e4c97b4789
commit 1393449308

View File

@ -853,7 +853,7 @@ RuntimeDyldChecker::RuntimeDyldChecker(
MCDisassembler *Disassembler,
MCInstPrinter *InstPrinter,
raw_ostream &ErrStream)
: Impl(make_unique<RuntimeDyldCheckerImpl>(
: Impl(llvm::make_unique<RuntimeDyldCheckerImpl>(
std::move(IsSymbolValid),
std::move(GetSymbolAddress),
std::move(GetSymbolContent),