mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 10:22:05 -05:00
LibCore: Explicitly mark HashMap copy
This commit is contained in:
parent
95d90a760b
commit
31ba0a1a4c
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ public:
|
||||||
private:
|
private:
|
||||||
MimeData() = default;
|
MimeData() = default;
|
||||||
explicit MimeData(HashMap<DeprecatedString, ByteBuffer> const& data)
|
explicit MimeData(HashMap<DeprecatedString, ByteBuffer> const& data)
|
||||||
: m_data(data)
|
: m_data(data.clone().release_value_but_fixme_should_propagate_errors())
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue