1
Fork 0
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:
Andreas Kling 2020-11-08 23:05:34 +01:00
parent c66434e085
commit 744af11991

View file

@ -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));
}
}