1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:17:45 +00:00

LibDebug: Use Core::Stream to read the DWARF abbreviations map

This commit is contained in:
Tim Schumacher 2023-01-21 12:27:24 +01:00 committed by Andreas Kling
parent 9b35e3d95b
commit 908b88db34
2 changed files with 17 additions and 14 deletions

View file

@ -28,7 +28,7 @@ public:
AbbreviationEntry const* get(u32 code) const;
private:
void populate_map();
ErrorOr<void> populate_map();
DwarfInfo const& m_dwarf_info;
u32 m_offset { 0 };