diff --git a/chibild.h b/chibild.h index 21db495e..3b222172 100644 --- a/chibild.h +++ b/chibild.h @@ -84,12 +84,6 @@ class SymbolTable; class InputSection; class ObjectFile; -class Symbol { -public: - StringRef name; - ObjectFile *file; -}; - class InputSection { public: InputSection(ObjectFile *file, ELF64LE::Shdr *hdr, StringRef name); diff --git a/symtab.h b/symtab.h index c5a5acfe..e89f8d15 100644 --- a/symtab.h +++ b/symtab.h @@ -1,6 +1,7 @@ #pragma once #include "chibild.h" +#include "symbols.h" namespace tbb { template<>