diff --git a/main/io/include/TCPSocket.h b/main/io/include/TCPSocket.h index 12be4cf3..73ae6ebf 100644 --- a/main/io/include/TCPSocket.h +++ b/main/io/include/TCPSocket.h @@ -103,7 +103,9 @@ class TCPSocket : public bell::Socket { #endif return value; } - bool isOpen() { return !isClosed; } + bool isOpen() { + return !isClosed; + } void close() { if (!isClosed) { diff --git a/main/utilities/include/BellUtils.h b/main/utilities/include/BellUtils.h index 0391d178..c196368c 100644 --- a/main/utilities/include/BellUtils.h +++ b/main/utilities/include/BellUtils.h @@ -52,7 +52,9 @@ struct tv { int32_t sec; int32_t usec; - int64_t ms() { return (sec * (int64_t)1000) + (usec / 1000); } + int64_t ms() { + return (sec * (int64_t)1000) + (usec / 1000); + } tv operator+(const tv& other) const { tv result(*this);