(ws) fix compiler warnings

This commit is contained in:
Benjamin Sergeant
2019-04-19 09:48:46 -07:00
parent b74bccee0a
commit 9fe3811c45
2 changed files with 11 additions and 2 deletions

View File

@ -39,6 +39,11 @@ namespace ix
if (eventType == ix::CobraConnection_EventType_Open)
{
std::cout << "Subscriber: connected" << std::endl;
for (auto it : headers)
{
std::cerr << it.first << ": " << it.second << std::endl;
}
}
else if (eventType == ix::CobraConnection_EventType_Authenticated)
{