summaryrefslogtreecommitdiff
path: root/src/string_func.h
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2010-11-20 15:44:24 +0000
committeralberth <alberth@openttd.org>2010-11-20 15:44:24 +0000
commitab50f74d7fa3c1c96de54012ccc197c4800901c8 (patch)
treefbee322b7dcec81c6a98a1ee923984d902e834f9 /src/string_func.h
parent38dc34828ea679e4952f9f30361382e29d2f2e06 (diff)
downloadopenttd-ab50f74d7fa3c1c96de54012ccc197c4800901c8.tar.xz
(svn r21273) -Codechange: Return values should start at the same line.
Diffstat (limited to 'src/string_func.h')
-rw-r--r--src/string_func.h5
1 files changed, 1 insertions, 4 deletions
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 */