tng 2003/03/07 10:08:59
Modified: c/src/xercesc/internal DGXMLScanner.hpp ElemStack.hpp
IGXMLScanner.hpp SGXMLScanner.hpp
VecAttributesImpl.hpp VecAttrListImpl.hpp
WFXMLScanner.hpp XMLScanner.hpp
Log:
Return a reference instead of void for operator=
Revision Changes Path
1.4 +4 -1 xml-xerces/c/src/xercesc/internal/DGXMLScanner.hpp
Index: DGXMLScanner.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/DGXMLScanner.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DGXMLScanner.hpp 15 Jan 2003 15:49:49 -0000 1.3
+++ DGXMLScanner.hpp 7 Mar 2003 18:08:58 -0000 1.4
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.4 2003/03/07 18:08:58 tng
+ * Return a reference instead of void for operator=
+ *
* Revision 1.3 2003/01/15 15:49:49 knoaman
* Change constant declaration name to match its value.
*
@@ -135,7 +138,7 @@
// -----------------------------------------------------------------------
DGXMLScanner();
DGXMLScanner(const DGXMLScanner&);
- void operator=(const DGXMLScanner&);
+ DGXMLScanner& operator=(const DGXMLScanner&);
// -----------------------------------------------------------------------
// XMLScanner virtual methods
1.4 +5 -2 xml-xerces/c/src/xercesc/internal/ElemStack.hpp
Index: ElemStack.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/ElemStack.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ElemStack.hpp 4 Dec 2002 02:23:50 -0000 1.3
+++ ElemStack.hpp 7 Mar 2003 18:08:58 -0000 1.4
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.4 2003/03/07 18:08:58 tng
+ * Return a reference instead of void for operator=
+ *
* Revision 1.3 2002/12/04 02:23:50 knoaman
* Scanner re-organization.
*
@@ -276,7 +279,7 @@
// Unimplemented constructors and operators
// -----------------------------------------------------------------------
ElemStack(const ElemStack&);
- void operator=(const ElemStack&);
+ ElemStack& operator=(const ElemStack&);
// -----------------------------------------------------------------------
@@ -453,7 +456,7 @@
// Unimplemented constructors and operators
// -----------------------------------------------------------------------
WFElemStack(const WFElemStack&);
- void operator=(const WFElemStack&);
+ WFElemStack& operator=(const WFElemStack&);
// -----------------------------------------------------------------------
1.5 +4 -1 xml-xerces/c/src/xercesc/internal/IGXMLScanner.hpp
Index: IGXMLScanner.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/IGXMLScanner.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- IGXMLScanner.hpp 29 Jan 2003 19:59:35 -0000 1.4
+++ IGXMLScanner.hpp 7 Mar 2003 18:08:58 -0000 1.5
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.5 2003/03/07 18:08:58 tng
+ * Return a reference instead of void for operator=
+ *
* Revision 1.4 2003/01/29 19:59:35 gareth
* we now detect when elements and attributes are validated/ the result of the
validation and store that information.
*
@@ -146,7 +149,7 @@
// -----------------------------------------------------------------------
IGXMLScanner();
IGXMLScanner(const IGXMLScanner&);
- void operator=(const IGXMLScanner&);
+ IGXMLScanner& operator=(const IGXMLScanner&);
// -----------------------------------------------------------------------
// XMLScanner virtual methods
1.5 +4 -1 xml-xerces/c/src/xercesc/internal/SGXMLScanner.hpp
Index: SGXMLScanner.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/SGXMLScanner.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- SGXMLScanner.hpp 29 Jan 2003 19:59:35 -0000 1.4
+++ SGXMLScanner.hpp 7 Mar 2003 18:08:58 -0000 1.5
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.5 2003/03/07 18:08:58 tng
+ * Return a reference instead of void for operator=
+ *
* Revision 1.4 2003/01/29 19:59:35 gareth
* we now detect when elements and attributes are validated/ the result of the
validation and store that information.
*
@@ -145,7 +148,7 @@
// -----------------------------------------------------------------------
SGXMLScanner();
SGXMLScanner(const SGXMLScanner&);
- void operator=(const SGXMLScanner&);
+ SGXMLScanner& operator=(const SGXMLScanner&);
// -----------------------------------------------------------------------
// XMLScanner virtual methods
1.3 +4 -1 xml-xerces/c/src/xercesc/internal/VecAttributesImpl.hpp
Index: VecAttributesImpl.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/VecAttributesImpl.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- VecAttributesImpl.hpp 4 Nov 2002 14:58:18 -0000 1.2
+++ VecAttributesImpl.hpp 7 Mar 2003 18:08:58 -0000 1.3
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.3 2003/03/07 18:08:58 tng
+ * Return a reference instead of void for operator=
+ *
* Revision 1.2 2002/11/04 14:58:18 tng
* C++ Namespace Support.
*
@@ -141,7 +144,7 @@
// Unimplemented constructors and operators
// -----------------------------------------------------------------------
VecAttributesImpl(const VecAttributesImpl&);
- void operator=(const VecAttributesImpl&);
+ VecAttributesImpl& operator=(const VecAttributesImpl&);
// -----------------------------------------------------------------------
1.3 +4 -1 xml-xerces/c/src/xercesc/internal/VecAttrListImpl.hpp
Index: VecAttrListImpl.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/VecAttrListImpl.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- VecAttrListImpl.hpp 4 Nov 2002 14:58:18 -0000 1.2
+++ VecAttrListImpl.hpp 7 Mar 2003 18:08:58 -0000 1.3
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.3 2003/03/07 18:08:58 tng
+ * Return a reference instead of void for operator=
+ *
* Revision 1.2 2002/11/04 14:58:18 tng
* C++ Namespace Support.
*
@@ -128,7 +131,7 @@
// Unimplemented constructors and operators
// -----------------------------------------------------------------------
VecAttrListImpl(const VecAttrListImpl&);
- void operator=(const VecAttrListImpl&);
+ VecAttrListImpl& operator=(const VecAttrListImpl&);
// -----------------------------------------------------------------------
1.4 +4 -1 xml-xerces/c/src/xercesc/internal/WFXMLScanner.hpp
Index: WFXMLScanner.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/WFXMLScanner.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- WFXMLScanner.hpp 15 Jan 2003 15:49:49 -0000 1.3
+++ WFXMLScanner.hpp 7 Mar 2003 18:08:58 -0000 1.4
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.4 2003/03/07 18:08:58 tng
+ * Return a reference instead of void for operator=
+ *
* Revision 1.3 2003/01/15 15:49:49 knoaman
* Change constant declaration name to match its value.
*
@@ -133,7 +136,7 @@
// -----------------------------------------------------------------------
WFXMLScanner();
WFXMLScanner(const WFXMLScanner&);
- void operator=(const WFXMLScanner&);
+ WFXMLScanner& operator=(const WFXMLScanner&);
// -----------------------------------------------------------------------
// XMLScanner virtual methods
1.17 +4 -1 xml-xerces/c/src/xercesc/internal/XMLScanner.hpp
Index: XMLScanner.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/internal/XMLScanner.hpp,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- XMLScanner.hpp 3 Jan 2003 20:08:40 -0000 1.16
+++ XMLScanner.hpp 7 Mar 2003 18:08:58 -0000 1.17
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.17 2003/03/07 18:08:58 tng
+ * Return a reference instead of void for operator=
+ *
* Revision 1.16 2003/01/03 20:08:40 tng
* New feature StandardUriConformant to force strict standard uri conformance.
*
@@ -887,7 +890,7 @@
// -----------------------------------------------------------------------
XMLScanner();
XMLScanner(const XMLScanner&);
- void operator=(const XMLScanner&);
+ XMLScanner& operator=(const XMLScanner&);
// -----------------------------------------------------------------------
// Private helper methods
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]