Index: llvm/trunk/include/llvm/Object/Archive.h =================================================================== --- llvm/trunk/include/llvm/Object/Archive.h +++ llvm/trunk/include/llvm/Object/Archive.h @@ -212,6 +212,10 @@ StringRef getSymbolTable() const { return SymbolTable; } uint32_t getNumberOfSymbols() const; + std::vector> takeThinBuffers() { + return std::move(ThinBuffers); + } + private: StringRef SymbolTable; StringRef StringTable;