| commit | 900c6c1f08f7c572125d7d39abe0f0f9eafbfa14 | [log] [tgz] |
|---|---|---|
| author | Chris Wailes <chriswailes@google.com> | Wed Aug 13 15:40:00 2014 -0700 |
| committer | Stephen Hines <srhines@google.com> | Wed Aug 20 18:15:48 2014 -0700 |
| tree | 22cca36b96db74d83980c5a3b68902dbcb1803a9 | |
| parent | def585e3621d073fe2f2b747cd1f0556d62c6656 [diff] [blame] |
Replace NULL macros with nullptr literals. Change-Id: Id2311cda59dd42c74b3ed54d3ff6cfd509012738
diff --git a/lib/ExecutionEngine/ELFObjectLoaderImpl.h b/lib/ExecutionEngine/ELFObjectLoaderImpl.h index 8734558..1490bcb 100644 --- a/lib/ExecutionEngine/ELFObjectLoaderImpl.h +++ b/lib/ExecutionEngine/ELFObjectLoaderImpl.h
@@ -40,7 +40,7 @@ #endif public: - ELFObjectLoaderImpl() : ObjectLoaderImpl(), mObject(NULL), mSymTab(NULL) { } + ELFObjectLoaderImpl() : ObjectLoaderImpl(), mObject(nullptr), mSymTab(nullptr) { } virtual bool load(const void *pMem, size_t pMemSize);