summaryrefslogtreecommitdiff
path: root/lld/ELF/Writer.h
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2017-07-26 18:42:48 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2017-07-26 18:42:48 +0000
commit7b134959151d21a5054ede9d87dac8bb57810ce5 (patch)
treec3606ea910d3f7707d695852363623fae27711e8 /lld/ELF/Writer.h
parent8a36335716b31f3ab3a5d1f726e413498110f78b (diff)
Detemplate SymbolTable.
NFC, just makes it easier to access from non templated code.
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 e430a0d3865..892272c3b0f 100644
--- a/lld/ELF/Writer.h
+++ b/lld/ELF/Writer.h
@@ -21,7 +21,7 @@ class InputFile;
class OutputSection;
class InputSectionBase;
template <class ELFT> class ObjectFile;
-template <class ELFT> class SymbolTable;
+class SymbolTable;
template <class ELFT> void writeResult();
template <class ELFT> void markLive();