summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_ctype.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/OS_NS_ctype.inl')
-rw-r--r--ACE/ace/OS_NS_ctype.inl4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/OS_NS_ctype.inl b/ACE/ace/OS_NS_ctype.inl
index dce7425a0a6..a9df50a9027 100644
--- a/ACE/ace/OS_NS_ctype.inl
+++ b/ACE/ace/OS_NS_ctype.inl
@@ -123,9 +123,9 @@ ACE_INLINE int
ACE_OS::ace_isprint (ACE_TCHAR c)
{
#if defined (ACE_USES_WCHAR)
-# if defined (_WIN32_WCE) && (_WIN32_WCE <= 0x600)
+# if (defined (_WIN32_WCE) && (_WIN32_WCE <= 0x600)) || defined (ACE_WIN32)
/* WinCE 6 and earlier have the bug that for tab (\t) the
- * iswprint returns true instead of false
+ * iswprint returns true instead of false. Win32 has this problem too.
*/
if (c == 0x9)
{