clang-format

This commit is contained in:
Benjamin Sergeant
2020-04-16 11:58:06 -07:00
parent 9b8cfa0a37
commit ccfd196863
7 changed files with 59 additions and 62 deletions

View File

@@ -6,9 +6,9 @@
#pragma once
#include "IXWebSocketHttpHeaders.h"
#include <cstdint>
#include <string>
#include "IXWebSocketHttpHeaders.h"
namespace ix
{

View File

@@ -222,7 +222,8 @@ namespace ix
{
_pongReceived = false;
std::stringstream ss;
ss << kPingMessage << "::" << _pingIntervalSecs << "s" << "::" << _pingCount++;
ss << kPingMessage << "::" << _pingIntervalSecs << "s"
<< "::" << _pingCount++;
return sendPing(ss.str());
}