From b3f74bb12ab86a90a05f7d48325b25c408d0b985 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 28 Oct 2024 13:39:23 +0900 Subject: Drop Borland compiler specific code Signed-off-by: Michele Calgaro (cherry picked from commit 69e1261df646edf24612d7f953dac81182e7461b) --- src/kernel/qobject.cpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/kernel/qobject.cpp') diff --git a/src/kernel/qobject.cpp b/src/kernel/qobject.cpp index 79b337f28..b7869c646 100644 --- a/src/kernel/qobject.cpp +++ b/src/kernel/qobject.cpp @@ -418,16 +418,7 @@ static inline bool isIdentChar( char x ) static inline bool isSpace( char x ) { -#if defined(Q_CC_BOR) - /* - Borland C++ 4.5 has a weird isspace() bug. - isspace() usually works, but not here. - This implementation is sufficient for our internal use: rmWS() - */ - return (uchar) x <= 32; -#else return isspace( (uchar) x ); -#endif } static TQCString qt_rmWS( const char *s ) -- cgit v1.2.3