LibCore: Explicitly mark HashMap copy

This commit is contained in:
Ben Wiederhake 2023-05-13 20:44:07 +02:00 committed by Jelle Raaijmakers
parent 95d90a760b
commit 31ba0a1a4c
Notes: sideshowbarker 2024-07-17 21:16:31 +09:00

View File

@ -41,7 +41,7 @@ public:
private:
MimeData() = default;
explicit MimeData(HashMap<DeprecatedString, ByteBuffer> const& data)
: m_data(data)
: m_data(data.clone().release_value_but_fixme_should_propagate_errors())
{
}