[lld] r251987 - Remove redundant = nullptr.

Rafael Espindola via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 3 14:01:20 PST 2015


Author: rafael
Date: Tue Nov  3 16:01:20 2015
New Revision: 251987

URL: http://llvm.org/viewvc/llvm-project?rev=251987&view=rev
Log:
Remove redundant = nullptr.

Modified:
    lld/trunk/ELF/OutputSections.h

Modified: lld/trunk/ELF/OutputSections.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/OutputSections.h?rev=251987&r1=251986&r2=251987&view=diff
==============================================================================
--- lld/trunk/ELF/OutputSections.h (original)
+++ lld/trunk/ELF/OutputSections.h Tue Nov  3 16:01:20 2015
@@ -378,7 +378,7 @@ template <class ELFT> GotPltSection<ELFT
 template <class ELFT> GotSection<ELFT> *Out<ELFT>::Got;
 template <class ELFT> HashTableSection<ELFT> *Out<ELFT>::HashTab;
 template <class ELFT> InterpSection<ELFT> *Out<ELFT>::Interp;
-template <class ELFT> OutputSection<ELFT> *Out<ELFT>::Bss = nullptr;
+template <class ELFT> OutputSection<ELFT> *Out<ELFT>::Bss;
 template <class ELFT> OutputSectionBase<ELFT> *Out<ELFT>::Opd;
 template <class ELFT> uint8_t *Out<ELFT>::OpdBuf;
 template <class ELFT> PltSection<ELFT> *Out<ELFT>::Plt;




More information about the llvm-commits mailing list