Address comments

This commit is contained in:
JCW
2026-06-08 15:38:40 +01:00
parent 8c7e29a13c
commit 36ec0fb275

View File

@@ -186,22 +186,6 @@ public:
explicit MyRefCountObject(std::string data) : data(std::move(data))
{
}
explicit MyRefCountObject(char const* data) : data(data)
{
}
MyRefCountObject&
operator=(MyRefCountObject const& other)
{
data = other.data;
return *this;
}
bool
operator==(MyRefCountObject const& other) const
{
return data == other.data;
}
bool
operator==(std::string const& other) const