summaryrefslogtreecommitdiff
path: root/src/string_func.h
diff options
context:
space:
mode:
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 */