summaryrefslogtreecommitdiffstats
path: root/qtools/qstring.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-06-14 12:29:25 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-06-14 12:29:25 (GMT)
commit9278509cf82ed7b0ff37c39e4d6e97f5308f29de (patch)
treeefed9f141ec8b9525647f8bfaaa69dff018d73ec /qtools/qstring.cpp
parent7edbf2b2e705eccc0d99cce86149228473bc7f3e (diff)
downloadDoxygen-9278509cf82ed7b0ff37c39e4d6e97f5308f29de.zip
Doxygen-9278509cf82ed7b0ff37c39e4d6e97f5308f29de.tar.gz
Doxygen-9278509cf82ed7b0ff37c39e4d6e97f5308f29de.tar.bz2
Fixed windows compile issue for is_neutral
Diffstat (limited to 'qtools/qstring.cpp')
-rw-r--r--qtools/qstring.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/qtools/qstring.cpp b/qtools/qstring.cpp
index a1a41d9..fa8f1d3 100644
--- a/qtools/qstring.cpp
+++ b/qtools/qstring.cpp
@@ -11601,7 +11601,9 @@ static inline bool is_arabic(unsigned short x) {
((x >= 0xfb50) && (x <= 0xfdff)) ||
((x >= 0xfe70) && (x <= 0xfeff)));
}
+#endif
+#ifndef QT_NO_UNICODETABLES
static inline bool is_neutral(unsigned short dir) {
return ((dir == QChar::DirB) ||
(dir == QChar::DirS) ||