From 127006192c11ab218d735b3e3295777344b0780b Mon Sep 17 00:00:00 2001 From: Michi Henning Date: Mon, 8 Jul 2002 07:44:11 +0000 Subject: Style fixes. --- cpp/src/IceUtil/InputUtil.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'cpp/src/IceUtil/InputUtil.cpp') diff --git a/cpp/src/IceUtil/InputUtil.cpp b/cpp/src/IceUtil/InputUtil.cpp index 6b69086cbad..b8652fff152 100644 --- a/cpp/src/IceUtil/InputUtil.cpp +++ b/cpp/src/IceUtil/InputUtil.cpp @@ -45,10 +45,11 @@ strToInt64(const char* s, char** endptr, int base) // Check for sign // int sign = 1; - if (*s == '+') + if(*s == '+') { ++s; - } else if (*s == '-') + } + else if(*s == '-') { sign = -1; ++s; @@ -82,7 +83,7 @@ strToInt64(const char* s, char** endptr, int base) // // Check that we have something left to parse // - if (*s == '/0') + if(*s == '/0') { return 0; } -- cgit v1.2.3