summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_ctype.inl
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2009-06-24 23:52:35 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2009-06-24 23:52:35 +0000
commit00f5c123221f1f60b1ff365d7cd14d4317e06ce1 (patch)
tree03495e9c736e43f1e2d44ad4e7c83a287f29b20b /ACE/ace/OS_NS_ctype.inl
parente0c701f206c2f136457b3d96310e2e28590b48f6 (diff)
downloadATCD-00f5c123221f1f60b1ff365d7cd14d4317e06ce1.tar.gz
new branchCIAOCDM
Diffstat (limited to 'ACE/ace/OS_NS_ctype.inl')
-rw-r--r--ACE/ace/OS_NS_ctype.inl7
1 files changed, 3 insertions, 4 deletions
diff --git a/ACE/ace/OS_NS_ctype.inl b/ACE/ace/OS_NS_ctype.inl
index 977ce001ad5..dce7425a0a6 100644
--- a/ACE/ace/OS_NS_ctype.inl
+++ b/ACE/ace/OS_NS_ctype.inl
@@ -123,10 +123,9 @@ ACE_INLINE int
ACE_OS::ace_isprint (ACE_TCHAR c)
{
#if defined (ACE_USES_WCHAR)
-# if defined (ACE_LACKS_CORRECT_ISWPRINT_TAB)
- /* The MS CRT has the bug that for tab (\t) iswprint returns true instead of
- * false. This has been reported to Microsoft:
- * https://connect.microsoft.com/VisualStudio/feedback ID# 381915
+# if defined (_WIN32_WCE) && (_WIN32_WCE <= 0x600)
+ /* WinCE 6 and earlier have the bug that for tab (\t) the
+ * iswprint returns true instead of false
*/
if (c == 0x9)
{