From ab50f74d7fa3c1c96de54012ccc197c4800901c8 Mon Sep 17 00:00:00 2001 From: alberth Date: Sat, 20 Nov 2010 15:44:24 +0000 Subject: (svn r21273) -Codechange: Return values should start at the same line. --- src/string_func.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/string_func.h') diff --git a/src/string_func.h b/src/string_func.h index 802b62e50..163ca3aed 100644 --- a/src/string_func.h +++ b/src/string_func.h @@ -273,10 +273,7 @@ static inline bool IsPrintable(WChar c) */ static inline bool IsWhitespace(WChar c) { - return - c == 0x0020 /* SPACE */ || - c == 0x3000 /* IDEOGRAPHIC SPACE */ - ; + return c == 0x0020 /* SPACE */ || c == 0x3000; /* IDEOGRAPHIC SPACE */ } /* Needed for NetBSD version (so feature) testing */ -- cgit v1.2.3-54-g00ecf