mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 21:08:12 +00:00
LibDebug: Use move semantics when populating abbreviations map
This commit is contained in:
parent
c66434e085
commit
744af11991
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue