From dcbf2cbfcaea464c3bb5336e853007d7b7b3a4d2 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Mon, 29 Aug 2016 21:33:01 +0000 Subject: [PATCH] COFF: disambiguate make_unique (NFC) This disambiguates `llvm::make_unqiue` and `std::make_unique` for the Windows buildbots. llvm-svn: 280014 --- lld/COFF/Writer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lld/COFF/Writer.cpp b/lld/COFF/Writer.cpp index 64924aa..6c3a7bd 100644 --- a/lld/COFF/Writer.cpp +++ b/lld/COFF/Writer.cpp @@ -355,11 +355,11 @@ void Writer::createMiscChunks() { // Create Debug Information Chunks if (Config->Debug) { - DebugDirectory = make_unique(DebugRecords); + DebugDirectory = llvm::make_unique(DebugRecords); // TODO(compnerd) create a coffgrp entry if DebugType::CV is not enabled if (Config->DebugTypes & static_cast(coff::DebugType::CV)) - DebugRecords.push_back(make_unique()); + DebugRecords.push_back(llvm::make_unique()); RData->addChunk(DebugDirectory.get()); for (const std::unique_ptr &C : DebugRecords) -- 2.7.4