summaryrefslogtreecommitdiff
path: root/include/llvm/Object
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2013-08-08 22:50:40 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2013-08-08 22:50:40 +0000
commit68554401fca3770583d21b8505553e914f9ee307 (patch)
treee678d54bfa5c51938255f88351a9a610ab61e828 /include/llvm/Object
parent081a1941b595f6294e4ce678fd61ef56a2ceb51e (diff)
downloadllvm-68554401fca3770583d21b8505553e914f9ee307.tar.gz
llvm-68554401fca3770583d21b8505553e914f9ee307.tar.bz2
llvm-68554401fca3770583d21b8505553e914f9ee307.tar.xz
llvm isn't C++11 yet :(
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188023 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Object')
-rw-r--r--include/llvm/Object/ELF.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Object/ELF.h b/include/llvm/Object/ELF.h
index 8afbd451be..39a8c981c5 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.