aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib
diff options
context:
space:
mode:
authorYaron Keren <yaron.keren@gmail.com>2014-10-06 06:39:57 +0000
committerYaron Keren <yaron.keren@gmail.com>2014-10-06 06:39:57 +0000
commit28a3fc6c3e0578b78b23dfddd7dca5415749b87c (patch)
tree232542708fe11c3fceb6220398846b13404875da /llvm/lib
parent6dddfe30d6bb8f071a0ff799dfa8468536886e80 (diff)
downloadllvm-28a3fc6c3e0578b78b23dfddd7dca5415749b87c.zip
llvm-28a3fc6c3e0578b78b23dfddd7dca5415749b87c.tar.gz
llvm-28a3fc6c3e0578b78b23dfddd7dca5415749b87c.tar.bz2
Resolve ambiguity between llvm::make_unique and std::make_unique.
Intorduced in r219098. llvm-svn: 219105
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/DebugInfo/DWARFUnit.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/DWARFUnit.h b/llvm/lib/DebugInfo/DWARFUnit.h
index a57bead..a4dd276 100644
--- a/llvm/lib/DebugInfo/DWARFUnit.h
+++ b/llvm/lib/DebugInfo/DWARFUnit.h
@@ -88,8 +88,9 @@ public:
DataExtractor Data(Section, LE, 0);
uint32_t Offset = 0;
while (Data.isValidOffset(Offset)) {
- auto U = make_unique<UnitType>(Context, DA, Section, RS, SS, SOS, AOS, &M,
- Data.isLittleEndian(), *this);
+ auto U =
+ llvm::make_unique<UnitType>(Context, DA, Section, RS, SS, SOS, AOS,
+ &M, Data.isLittleEndian(), *this);
if (!U->extract(Data, &Offset))
break;
this->push_back(std::move(U));