knoaman 2002/12/02 09:20:06
Modified: c/src/xercesc/internal XMLReader.hpp XMLReader.cpp
Log:
Remove unused data member.
Revision Changes Path
1.8 +3 -1 xml-xerces/c/src/xercesc/internal/XMLReader.hpp
Index: XMLReader.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/XMLReader.hpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- XMLReader.hpp 28 Nov 2002 19:19:12 -0000 1.7
+++ XMLReader.hpp 2 Dec 2002 17:20:05 -0000 1.8
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.8 2002/12/02 17:20:05 knoaman
+ * Remove unused data member.
+ *
* Revision 1.7 2002/11/28 19:19:12 knoaman
* Performance: remove unnecessary if condition.
*
@@ -559,7 +562,6 @@
RefFrom fRefFrom;
bool fSentTrailingSpace;
Sources fSource;
- XMLCh fSpareCh;
unsigned int fSrcOfsBase;
bool fSrcOfsSupported;
XMLCh* fSystemId;
1.9 +2 -5 xml-xerces/c/src/xercesc/internal/XMLReader.cpp
Index: XMLReader.cpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/XMLReader.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- XMLReader.cpp 28 Nov 2002 18:55:38 -0000 1.8
+++ XMLReader.cpp 2 Dec 2002 17:20:05 -0000 1.9
@@ -184,7 +184,6 @@
, fRefFrom(from)
, fSentTrailingSpace(false)
, fSource(source)
- , fSpareCh(0)
, fSrcOfsBase(0)
, fSrcOfsSupported(false)
, fStream(streamToAdopt)
@@ -259,7 +258,6 @@
, fRefFrom(from)
, fSentTrailingSpace(false)
, fSource(source)
- , fSpareCh(0)
, fSrcOfsBase(0)
, fSrcOfsSupported(false)
, fStream(streamToAdopt)
@@ -371,7 +369,6 @@
, fRefFrom(from)
, fSentTrailingSpace(false)
, fSource(source)
- , fSpareCh(0)
, fSrcOfsBase(0)
, fSrcOfsSupported(false)
, fStream(streamToAdopt)
@@ -478,7 +475,7 @@
// If we are full, then don't do anything.
if (spareChars == kCharBufSize)
- return false;
+ return true;
//
// If no transcoder has been created yet, then we never saw the
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]