aboutsummaryrefslogtreecommitdiff
path: root/src/common/StringUtil.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/StringUtil.cpp')
-rw-r--r--src/common/StringUtil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/StringUtil.cpp b/src/common/StringUtil.cpp
index d3948c6a..440db8c4 100644
--- a/src/common/StringUtil.cpp
+++ b/src/common/StringUtil.cpp
@@ -253,7 +253,7 @@ char16_t ToUpper(char16_t c) {
return c;
}
-char16_t IsWhitespace(char16_t c) {
+bool IsWhitespace(char16_t c) {
return c == u' ' || c == u'\t' || c == u'\n' || c == u'\r';
}
} // namespace cru