Merge branch 'master' into raph

This commit is contained in:
Raphael 2025-05-25 12:13:58 +02:00
commit 2105ef7d35

View file

@ -143,6 +143,6 @@ void Server::printUsers() const
for (std::map<int, User *>::const_iterator it = _users.begin(); it != _users.end(); ++it) for (std::map<int, User *>::const_iterator it = _users.begin(); it != _users.end(); ++it)
{ {
std::cout << "User fd: " << it->first << std::endl; std::cout << "User fd: " << it->first << std::endl;
std::cout << "Nickname: " << it->second->getNickname() << std::endl; std::cout << "Nickname: " << it->second->getName() << std::endl;
} }
} }