forked from OSchip/llvm-project
[cleanup] remove unused private variable
llvm-svn: 192278
This commit is contained in:
parent
1d3c48f1fc
commit
30c4d11395
|
@ -64,7 +64,8 @@ public:
|
|||
virtual bool isWholeArchive() const { return _isWholeArchive; }
|
||||
|
||||
/// \brief parse each member
|
||||
virtual error_code parseAllMembers(std::vector<std::unique_ptr<File>> &result) const {
|
||||
virtual error_code
|
||||
parseAllMembers(std::vector<std::unique_ptr<File>> &result) const {
|
||||
for (auto mf = _archive->begin_children(),
|
||||
me = _archive->end_children(); mf != me; ++mf) {
|
||||
OwningPtr<MemoryBuffer> buff;
|
||||
|
@ -138,7 +139,6 @@ private:
|
|||
atom_collection_vector<UndefinedAtom> _undefinedAtoms;
|
||||
atom_collection_vector<SharedLibraryAtom> _sharedLibraryAtoms;
|
||||
atom_collection_vector<AbsoluteAtom> _absoluteAtoms;
|
||||
mutable uint64_t _curChildOrd;
|
||||
bool _isWholeArchive;
|
||||
|
||||
public:
|
||||
|
|
Loading…
Reference in New Issue