diff options
Diffstat (limited to 'lld/ELF/InputSection.h')
-rw-r--r-- | lld/ELF/InputSection.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/ELF/InputSection.h b/lld/ELF/InputSection.h index 28c621b1609..a12b5919b6e 100644 --- a/lld/ELF/InputSection.h +++ b/lld/ELF/InputSection.h @@ -21,11 +21,11 @@ namespace lld { namespace elf { +class DefinedCommon; class SymbolBody; template <class ELFT> class ICF; template <class ELFT> class DefinedRegular; -template <class ELFT> class DefinedCommon; template <class ELFT> class ObjectFile; template <class ELFT> class OutputSection; template <class ELFT> class OutputSectionBase; @@ -287,7 +287,7 @@ template <class ELFT> class CommonInputSection : public InputSection<ELFT> { typedef typename ELFT::uint uintX_t; public: - CommonInputSection(std::vector<DefinedCommon<ELFT> *> Syms); + CommonInputSection(std::vector<DefinedCommon *> Syms); // The singleton instance of this class. static CommonInputSection<ELFT> *X; |