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

View file

@ -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())
{ {
} }