mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:04:59 +00:00
AK: Make all HashMap copy-constructs explicit
This commit is contained in:
parent
6421899078
commit
95d90a760b
2 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@ JsonObject::JsonObject() = default;
|
|||
JsonObject::~JsonObject() = default;
|
||||
|
||||
JsonObject::JsonObject(JsonObject const& other)
|
||||
: m_members(other.m_members)
|
||||
: m_members(other.m_members.clone().release_value_but_fixme_should_propagate_errors())
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -26,7 +26,7 @@ JsonObject::JsonObject(JsonObject&& other)
|
|||
JsonObject& JsonObject::operator=(JsonObject const& other)
|
||||
{
|
||||
if (this != &other)
|
||||
m_members = other.m_members;
|
||||
m_members = other.m_members.clone().release_value_but_fixme_should_propagate_errors();
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue