summaryrefslogtreecommitdiff
path: root/sal/textenc/unichars.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/textenc/unichars.hxx')
-rw-r--r--sal/textenc/unichars.hxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/sal/textenc/unichars.hxx b/sal/textenc/unichars.hxx
index e11e47493183..8ca1021da005 100644
--- a/sal/textenc/unichars.hxx
+++ b/sal/textenc/unichars.hxx
@@ -31,13 +31,11 @@
bool ImplIsControlOrFormat(sal_uInt32 nUtf32);
-inline bool ImplIsHighSurrogate(sal_uInt32 nUtf32)
-{ return nUtf32 >= 0xD800 && nUtf32 <= 0xDBFF; }
- // All code points that are high-surrogates, as of Unicode 3.1.1.
+// All code points that are high-surrogates, as of Unicode 3.1.1.
+inline bool ImplIsHighSurrogate(sal_uInt32 nUtf32) { return nUtf32 >= 0xD800 && nUtf32 <= 0xDBFF; }
-inline bool ImplIsLowSurrogate(sal_uInt32 nUtf32)
-{ return nUtf32 >= 0xDC00 && nUtf32 <= 0xDFFF; }
- // All code points that are low-surrogates, as of Unicode 3.1.1.
+// All code points that are low-surrogates, as of Unicode 3.1.1.
+inline bool ImplIsLowSurrogate(sal_uInt32 nUtf32) { return nUtf32 >= 0xDC00 && nUtf32 <= 0xDFFF; }
bool ImplIsPrivateUse(sal_uInt32 nUtf32);