From d0bff049a8d2f6d3208db84bc5fbdf630bb52cf7 Mon Sep 17 00:00:00 2001
From: "Unknown (roddey)" <dev-null@apache.org>
Date: Wed, 1 Dec 1999 18:54:26 +0000
Subject: [PATCH] Small syntactical change to make it compile under Borland's
 compiler. It does not make it worse under other compilers, so why not.
 Basically it was just changing ::iswspace() to iswspace(), i.e. get rid of
 the :: prefix, which freaked out Borland for some reason.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@171448 13f79535-47bb-0310-9956-ffa450edef68
---
 src/util/Transcoders/Win32/Win32TransService.cpp | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/src/util/Transcoders/Win32/Win32TransService.cpp b/src/util/Transcoders/Win32/Win32TransService.cpp
index 32c96da46..c95f0fe15 100644
--- a/src/util/Transcoders/Win32/Win32TransService.cpp
+++ b/src/util/Transcoders/Win32/Win32TransService.cpp
@@ -56,8 +56,14 @@
 
 /**
  * $Log$
- * Revision 1.1  1999/11/09 01:06:04  twl
- * Initial revision
+ * Revision 1.2  1999/12/01 18:54:26  roddey
+ * Small syntactical change to make it compile under Borland's compiler.
+ * It does not make it worse under other compilers, so why not. Basically
+ * it was just changing ::iswspace() to iswspace(), i.e. get rid of the ::
+ * prefix, which freaked out Borland for some reason.
+ *
+ * Revision 1.1.1.1  1999/11/09 01:06:04  twl
+ * Initial checkin
  *
  * Revision 1.2  1999/11/08 20:45:35  rahul
  * Swat for adding in Product name and CVS comment log variable.
@@ -102,7 +108,7 @@ int Win32TransService::compareNIString( const   XMLCh* const    comp1
 
 bool Win32TransService::isSpace(const XMLCh toCheck) const
 {
-    return (::iswspace(toCheck) != 0);
+    return (iswspace(toCheck) != 0);
 }
 
 XMLTranscoder* Win32TransService::makeNewDefTranscoder()
-- 
GitLab