diff options
Diffstat (limited to 'Libraries/LibDebug/Dwarf/AbbreviationsMap.cpp')
-rw-r--r-- | Libraries/LibDebug/Dwarf/AbbreviationsMap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibDebug/Dwarf/AbbreviationsMap.cpp b/Libraries/LibDebug/Dwarf/AbbreviationsMap.cpp index 74f800ae29..865cf56943 100644 --- a/Libraries/LibDebug/Dwarf/AbbreviationsMap.cpp +++ b/Libraries/LibDebug/Dwarf/AbbreviationsMap.cpp @@ -76,7 +76,7 @@ void AbbreviationsMap::populate_map() } } while (current_attribute_specification.attribute != Attribute::None || current_attribute_specification.form != AttributeDataForm::None); - m_entries.set((u32)abbreviation_code, abbrevation_entry); + m_entries.set((u32)abbreviation_code, move(abbrevation_entry)); } } |