Fix warnings

This commit is contained in:
ubuntu
2022-09-28 03:34:04 -07:00
committed by WarmUpTill
parent 22f4c11ee3
commit d107f653de
4 changed files with 9 additions and 12 deletions

View File

@@ -55,7 +55,7 @@ Connection::Connection(std::string name, std::string address, uint64_t port,
{
}
Connection::Connection(const Connection &other)
Connection::Connection(const Connection &other) : Item(other)
{
_name = other._name;
_address = other._address;