Silence a gcc warning about unitialized values

This commit is contained in:
Jeremy Rifkin 2025-02-17 18:22:58 -06:00
parent 111f8e6aec
commit 8c7b1dc6aa
No known key found for this signature in database
GPG Key ID: 19AA8270105E8EB4

View File

@ -62,7 +62,7 @@ namespace libdwarf {
}; };
struct line_table_info { struct line_table_info {
Dwarf_Unsigned version; Dwarf_Unsigned version = 0;
Dwarf_Line_Context line_context = nullptr; Dwarf_Line_Context line_context = nullptr;
// sorted by low_addr // sorted by low_addr
// TODO: Make this optional at some point, it may not be generated if cache mode switches during program exec... // TODO: Make this optional at some point, it may not be generated if cache mode switches during program exec...