mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-16 00:16:50 +00:00
[Orc] Qualify call to make_unique to avoid ambiguity with std::make_unique.
This should fix some of the bot failures associated with r258185. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@258204 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4ce7a6cb25
commit
f32ef420e6
@ -105,10 +105,10 @@ private:
|
||||
FinalizerFtor Finalizer,
|
||||
bool ProcessAllSections)
|
||||
: MemMgr(std::move(MemMgr)),
|
||||
PFC(make_unique<PreFinalizeContents>(std::move(Objects),
|
||||
std::move(Resolver),
|
||||
std::move(Finalizer),
|
||||
ProcessAllSections)) {
|
||||
PFC(llvm::make_unique<PreFinalizeContents>(std::move(Objects),
|
||||
std::move(Resolver),
|
||||
std::move(Finalizer),
|
||||
ProcessAllSections)) {
|
||||
buildInitialSymbolTable(PFC->Objects);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user