From 97d627cb72cbae4700c0433b2e89436621d2509a Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Sun, 6 Jan 2008 06:44:11 +0000 Subject: Sun Jan 6 06:43:12 UTC 2007 Johnny Willemsen --- ACE/tests/IOStream_Test.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'ACE/tests/IOStream_Test.cpp') diff --git a/ACE/tests/IOStream_Test.cpp b/ACE/tests/IOStream_Test.cpp index efa6e8de7d2..ffb758975f4 100644 --- a/ACE/tests/IOStream_Test.cpp +++ b/ACE/tests/IOStream_Test.cpp @@ -29,7 +29,7 @@ ACE_RCSID (tests, IOStream_Test, "$Id$") #if !defined (ACE_LACKS_ACE_IOSTREAM) # include "ace/OS_NS_unistd.h" -# include "ace/os_include/os_ctype.h" // Needed for isspace() function +# include "ace/OS_NS_ctype.h" // Needed for isspace() function typedef ACE_IOStream ACE_SOCK_IOStream; @@ -108,19 +108,11 @@ operator>> (ACE_SOCK_IOStream & stream, qchar *buf) // if we don't have a quote, append until we see space if (c != '"') for (*buf++ = c; -#ifdef CHORUS - stream.get (c) && !ACE_OS::ace_isspace (c); -#else (void *) stream.get (c) && !ACE_OS::ace_isspace (c); -#endif /* CHORUS */ *buf++ = c) continue; else -#ifdef CHORUS - for (; stream.get (c) && c != '"'; *buf++ = c) -#else for (; (void *) stream.get (c) && c != '"'; *buf++ = c) -#endif /* CHORUS */ if (c == '\\') { stream.get (c); -- cgit v1.2.1