indent files

This commit is contained in:
Benjamin Sergeant
2020-03-20 17:00:18 -07:00
parent 1d6373335c
commit 5ce846f48b
12 changed files with 121 additions and 118 deletions

View File

@ -148,7 +148,7 @@ namespace ix
auto vec = load(path);
return std::string(vec.begin(), vec.end());
}
SocketTLSOptions makeClientTLSOptions()
{
SocketTLSOptions tlsOptionsClient;
@ -237,9 +237,7 @@ namespace ix
std::string makeCobraEndpoint(int port, bool preferTLS)
{
std::stringstream ss;
ss << getWsScheme(preferTLS)
<< "localhost:"
<< port;
ss << getWsScheme(preferTLS) << "localhost:" << port;
std::string endpoint = ss.str();
return endpoint;