| 135 | class TVerneedSection : public TSection { |
| 136 | public: |
| 137 | TVerneedSection(TElf* elf) |
| 138 | : TSection(elf, elf->GetSectionByType(SHT_GNU_verneed)) |
| 139 | { |
| 140 | } |
| 141 | |
| 142 | Elf64_Verneed* GetFirstVerneed() const noexcept { |
| 143 | if (!GetSize()) { |
nothing calls this directly
no test coverage detected