forked from OSchip/llvm-project
[ELF][Writer] Use llvm::StringMap instead
Cleanup. llvm-svn: 230219
This commit is contained in:
parent
97dae2a0cd
commit
8198cfd8a7
|
@ -148,7 +148,7 @@ public:
|
|||
|
||||
// Output Sections contain the map of Sectionnames to a vector of sections,
|
||||
// that have been merged to form a single section
|
||||
typedef std::map<StringRef, OutputSection<ELFT> *> OutputSectionMapT;
|
||||
typedef llvm::StringMap<OutputSection<ELFT> *> OutputSectionMapT;
|
||||
typedef
|
||||
typename std::vector<OutputSection<ELFT> *>::iterator OutputSectionIter;
|
||||
|
||||
|
|
Loading…
Reference in New Issue