Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 468766 | Differences between
and this patch

Collapse All | Expand All

(-)blobby-1.0.orig/src/NetworkMessage.cpp (-1 / +1 lines)
Lines 109-114 Link Here
109
109
110
std::ostream& operator<<(std::ostream& stream, const ServerInfo& val)
110
std::ostream& operator<<(std::ostream& stream, const ServerInfo& val)
111
{
111
{
112
	return stream << val.name << " (" << val.hostname << ":" << val.port << ")";
112
	return stream << std::string(val.name) << std::string(" (") << std::string(val.hostname) << std::string(":") << std::to_string(val.port) << std::string(")");
113
}
113
}
114
114

Return to bug 468766