[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:
Lang Hames 2016-01-19 22:22:43 +00:00
parent 4ce7a6cb25
commit f32ef420e6

View File

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