summaryrefslogtreecommitdiff
path: root/lld/ELF/Writer.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2017-02-23 02:28:28 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2017-02-23 02:28:28 +0000
commit4d7dad15ccb61db6ab5606ff82e7d9d803077187 (patch)
tree378f6550b074607442c528421e1a3b641015c1e1 /lld/ELF/Writer.h
parent16b5f6dbd8d6259436cc2a4ebec4dd5e44def515 (diff)
Convert InputSectionBase to a class.
Removing this template is not a big win by itself, but opens the way for removing more templates.
Diffstat (limited to 'lld/ELF/Writer.h')
-rw-r--r--lld/ELF/Writer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/Writer.h b/lld/ELF/Writer.h
index b5be425b043..93ea264d7c1 100644
--- a/lld/ELF/Writer.h
+++ b/lld/ELF/Writer.h
@@ -19,7 +19,7 @@ namespace lld {
namespace elf {
class InputFile;
class OutputSectionBase;
-template <class ELFT> class InputSectionBase;
+class InputSectionBase;
template <class ELFT> class ObjectFile;
template <class ELFT> class SymbolTable;
template <class ELFT> void writeResult();