s/NULL/nullptr/

llvm-svn: 196994
This commit is contained in:
Rui Ueyama 2013-12-11 01:31:54 +00:00
parent 74aa0256c9
commit 5c65a0efd1
1 changed files with 1 additions and 1 deletions

View File

@ -361,7 +361,7 @@ PEHeaderChunk::PEHeaderChunk(const PECOFFLinkingContext &context)
std::memset(&_peHeader, 0, sizeof(_peHeader));
_coffHeader.Machine = context.getMachineType();
_coffHeader.TimeDateStamp = time(NULL);
_coffHeader.TimeDateStamp = time(nullptr);
// The size of PE header including optional data directory is always 224.
_coffHeader.SizeOfOptionalHeader = 224;