mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:18:11 +00:00
AK: Move memory streams into their own header.
This commit is contained in:
parent
f9516a99bf
commit
b68a873067
12 changed files with 314 additions and 298 deletions
|
@ -26,7 +26,7 @@
|
|||
|
||||
#include "DwarfInfo.h"
|
||||
|
||||
#include <AK/Stream.h>
|
||||
#include <AK/MemoryStream.h>
|
||||
|
||||
namespace Debug::Dwarf {
|
||||
|
||||
|
@ -53,7 +53,7 @@ void DwarfInfo::populate_compilation_units()
|
|||
if (m_debug_info_data.is_null())
|
||||
return;
|
||||
|
||||
InputMemoryStream stream{ m_debug_info_data };
|
||||
InputMemoryStream stream { m_debug_info_data };
|
||||
while (!stream.eof()) {
|
||||
auto unit_offset = stream.offset();
|
||||
CompilationUnitHeader compilation_unit_header {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue