Move a private field to private section.

llvm-svn: 196562
This commit is contained in:
Rui Ueyama 2013-12-06 04:34:04 +00:00
parent 99952a0823
commit b1c2015203
1 changed files with 2 additions and 3 deletions

View File

@ -140,6 +140,8 @@ private:
atom_collection_vector<SharedLibraryAtom> _sharedLibraryAtoms;
atom_collection_vector<AbsoluteAtom> _absoluteAtoms;
bool _isWholeArchive;
std::unordered_map<StringRef, llvm::object::Archive::child_iterator>
_symbolMemberMap;
public:
/// only subclasses of ArchiveLibraryFile can be instantiated
@ -166,9 +168,6 @@ public:
_symbolMemberMap[name] = member;
}
}
std::unordered_map<StringRef,
llvm::object::Archive::child_iterator> _symbolMemberMap;
}; // class FileArchive
} // end namespace lld