From: Michael J. Spencer Date: Thu, 8 Aug 2013 22:50:40 +0000 (+0000) Subject: llvm isn't C++11 yet :( X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=68554401fca3770583d21b8505553e914f9ee307;p=oota-llvm.git llvm isn't C++11 yet :( git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188023 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Object/ELF.h b/include/llvm/Object/ELF.h index 8afbd451beb..39a8c981c59 100644 --- a/include/llvm/Object/ELF.h +++ b/include/llvm/Object/ELF.h @@ -249,7 +249,7 @@ private: /// \brief Represents a region described by entries in the .dynamic table. struct DynRegionInfo { - DynRegionInfo() : Addr(nullptr), Size(0), EntSize(0) {} + DynRegionInfo() : Addr(0), Size(0), EntSize(0) {} /// \brief Address in current address space. const void *Addr; /// \brief Size in bytes of the region.