[ELF][Writer] Use llvm::StringMap instead

Cleanup.

llvm-svn: 230219
This commit is contained in:
Shankar Easwaran 2015-02-23 13:50:23 +00:00
parent 97dae2a0cd
commit 8198cfd8a7
1 changed files with 1 additions and 1 deletions

View File

@ -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;