From 9278509cf82ed7b0ff37c39e4d6e97f5308f29de Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Sat, 14 Jun 2014 14:29:25 +0200 Subject: Fixed windows compile issue for is_neutral --- qtools/qstring.cpp | 2 ++ 1 file changed, 2 insertions(+) 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) || -- cgit v0.12