From b19b2a044cc4ceb7590b9fc65e83ef8220d83a03 Mon Sep 17 00:00:00 2001 From: Erik Frojdh Date: Wed, 16 Jan 2019 15:22:18 +0100 Subject: [PATCH] minor --- slsSupportLib/src/ClientInterface.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/slsSupportLib/src/ClientInterface.cpp b/slsSupportLib/src/ClientInterface.cpp index f2f340dcd..88d1f3758 100644 --- a/slsSupportLib/src/ClientInterface.cpp +++ b/slsSupportLib/src/ClientInterface.cpp @@ -1,9 +1,8 @@ #include "ClientInterface.h" -ClientInterface::ClientInterface(MySocketTCP *socket, int n, std::string t): -mySocket(socket), -index(n), -type(t){} +ClientInterface::ClientInterface(MySocketTCP *socket, int n, std::string t): mySocket(socket), + index(n), + type(t){} void ClientInterface::SetSocket(MySocketTCP *socket) { mySocket = socket;