forked from OSchip/llvm-project
Move a private field to private section.
llvm-svn: 196562
This commit is contained in:
parent
99952a0823
commit
b1c2015203
lld/include/lld/ReaderWriter
|
@ -140,6 +140,8 @@ private:
|
||||||
atom_collection_vector<SharedLibraryAtom> _sharedLibraryAtoms;
|
atom_collection_vector<SharedLibraryAtom> _sharedLibraryAtoms;
|
||||||
atom_collection_vector<AbsoluteAtom> _absoluteAtoms;
|
atom_collection_vector<AbsoluteAtom> _absoluteAtoms;
|
||||||
bool _isWholeArchive;
|
bool _isWholeArchive;
|
||||||
|
std::unordered_map<StringRef, llvm::object::Archive::child_iterator>
|
||||||
|
_symbolMemberMap;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
/// only subclasses of ArchiveLibraryFile can be instantiated
|
/// only subclasses of ArchiveLibraryFile can be instantiated
|
||||||
|
@ -166,9 +168,6 @@ public:
|
||||||
_symbolMemberMap[name] = member;
|
_symbolMemberMap[name] = member;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::unordered_map<StringRef,
|
|
||||||
llvm::object::Archive::child_iterator> _symbolMemberMap;
|
|
||||||
}; // class FileArchive
|
}; // class FileArchive
|
||||||
|
|
||||||
} // end namespace lld
|
} // end namespace lld
|
||||||
|
|
Loading…
Reference in New Issue