tng 2002/08/22 08:04:59
Modified: c/src/xercesc/dom DOMAttr.hpp DOMBuilder.hpp
DOMCDATASection.hpp DOMCharacterData.hpp
DOMComment.hpp DOMDocument.hpp
DOMDocumentFragment.hpp DOMDocumentRange.hpp
DOMDocumentTraversal.hpp DOMDocumentType.hpp
DOMElement.hpp DOMEntity.hpp DOMEntityReference.hpp
DOMEntityResolver.hpp DOMError.hpp
DOMErrorHandler.hpp DOMImplementation.hpp
DOMImplementationLS.hpp DOMImplementationSource.hpp
DOMInputSource.hpp DOMLocator.hpp
DOMNamedNodeMap.hpp DOMNode.hpp DOMNodeFilter.hpp
DOMNodeIterator.hpp DOMNodeList.hpp DOMNotation.hpp
DOMProcessingInstruction.hpp DOMRange.hpp
DOMText.hpp DOMTreeWalker.hpp
DOMUserDataHandler.hpp DOMWriter.hpp
DOMWriterFilter.hpp
Log:
Remove unused parameter variables in inline functions.
Revision Changes Path
1.4 +3 -3 xml-xerces/c/src/xercesc/dom/DOMAttr.hpp
Index: DOMAttr.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMAttr.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DOMAttr.hpp 6 Jun 2002 20:53:06 -0000 1.3
+++ DOMAttr.hpp 22 Aug 2002 15:04:57 -0000 1.4
@@ -100,8 +100,8 @@
/** @name Hidden constructors */
//@{
DOMAttr() {};
- DOMAttr(const DOMAttr &other) {};
- DOMAttr & operator = (const DOMAttr &other) {return *this;};
+ DOMAttr(const DOMAttr &) {};
+ DOMAttr & operator = (const DOMAttr &) {return *this;};
//@}
public:
1.8 +3 -3 xml-xerces/c/src/xercesc/dom/DOMBuilder.hpp
Index: DOMBuilder.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMBuilder.hpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- DOMBuilder.hpp 15 Jul 2002 18:24:33 -0000 1.7
+++ DOMBuilder.hpp 22 Aug 2002 15:04:57 -0000 1.8
@@ -92,8 +92,8 @@
/** @name Hidden constructors */
//@{
DOMBuilder() {};
- DOMBuilder(const DOMBuilder &other) {};
- DOMBuilder & operator = (const DOMBuilder &other) {return *this;};
+ DOMBuilder(const DOMBuilder &) {};
+ DOMBuilder & operator = (const DOMBuilder &) {return *this;};
//@}
public:
1.4 +3 -3 xml-xerces/c/src/xercesc/dom/DOMCDATASection.hpp
Index: DOMCDATASection.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMCDATASection.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DOMCDATASection.hpp 6 Jun 2002 20:53:06 -0000 1.3
+++ DOMCDATASection.hpp 22 Aug 2002 15:04:57 -0000 1.4
@@ -108,8 +108,8 @@
/** @name Hidden constructors */
//@{
DOMCDATASection() {};
- DOMCDATASection(const DOMCDATASection &other) {};
- DOMCDATASection & operator = (const DOMCDATASection &other) {return *this;};
+ DOMCDATASection(const DOMCDATASection &) {};
+ DOMCDATASection & operator = (const DOMCDATASection &) {return *this;};
//@}
public:
1.6 +3 -3 xml-xerces/c/src/xercesc/dom/DOMCharacterData.hpp
Index: DOMCharacterData.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMCharacterData.hpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- DOMCharacterData.hpp 12 Jun 2002 18:29:31 -0000 1.5
+++ DOMCharacterData.hpp 22 Aug 2002 15:04:57 -0000 1.6
@@ -89,8 +89,8 @@
/** @name Hidden constructors */
//@{
DOMCharacterData() {};
- DOMCharacterData(const DOMCharacterData &other) {};
- DOMCharacterData & operator = (const DOMCharacterData &other) {return *this;};
+ DOMCharacterData(const DOMCharacterData &) {};
+ DOMCharacterData & operator = (const DOMCharacterData &) {return *this;};
//@}
public:
1.4 +3 -3 xml-xerces/c/src/xercesc/dom/DOMComment.hpp
Index: DOMComment.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMComment.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DOMComment.hpp 6 Jun 2002 20:53:06 -0000 1.3
+++ DOMComment.hpp 22 Aug 2002 15:04:57 -0000 1.4
@@ -82,8 +82,8 @@
/** @name Hidden constructors */
//@{
DOMComment() {};
- DOMComment(const DOMComment &other) {};
- DOMComment & operator = (const DOMComment &other) {return *this;};
+ DOMComment(const DOMComment &) {};
+ DOMComment & operator = (const DOMComment &) {return *this;};
//@}
public:
1.9 +3 -3 xml-xerces/c/src/xercesc/dom/DOMDocument.hpp
Index: DOMDocument.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMDocument.hpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- DOMDocument.hpp 15 Jul 2002 19:29:21 -0000 1.8
+++ DOMDocument.hpp 22 Aug 2002 15:04:57 -0000 1.9
@@ -109,8 +109,8 @@
/** @name Hidden constructors */
//@{
DOMDocument() {};
- DOMDocument(const DOMDocument &other) {};
- DOMDocument & operator = (const DOMDocument &other) {return *this;};
+ DOMDocument(const DOMDocument &) {};
+ DOMDocument & operator = (const DOMDocument &) {return *this;};
//@}
public:
1.4 +3 -3 xml-xerces/c/src/xercesc/dom/DOMDocumentFragment.hpp
Index: DOMDocumentFragment.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMDocumentFragment.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DOMDocumentFragment.hpp 6 Jun 2002 20:53:06 -0000 1.3
+++ DOMDocumentFragment.hpp 22 Aug 2002 15:04:57 -0000 1.4
@@ -114,8 +114,8 @@
/** @name Hidden constructors */
//@{
DOMDocumentFragment() {};
- DOMDocumentFragment(const DOMDocumentFragment &other) {};
- DOMDocumentFragment & operator = (const DOMDocumentFragment &other) {return
*this;};
+ DOMDocumentFragment(const DOMDocumentFragment &) {};
+ DOMDocumentFragment & operator = (const DOMDocumentFragment &) {return *this;};
//@}
public:
1.4 +3 -3 xml-xerces/c/src/xercesc/dom/DOMDocumentRange.hpp
Index: DOMDocumentRange.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMDocumentRange.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DOMDocumentRange.hpp 6 Jun 2002 20:53:06 -0000 1.3
+++ DOMDocumentRange.hpp 22 Aug 2002 15:04:57 -0000 1.4
@@ -79,8 +79,8 @@
/** @name Hidden constructors */
//@{
DOMDocumentRange() {};
- DOMDocumentRange(const DOMDocumentRange &other) {};
- DOMDocumentRange & operator = (const DOMDocumentRange &other) {return *this;};
+ DOMDocumentRange(const DOMDocumentRange &) {};
+ DOMDocumentRange & operator = (const DOMDocumentRange &) {return *this;};
//@}
public:
1.4 +3 -3 xml-xerces/c/src/xercesc/dom/DOMDocumentTraversal.hpp
Index: DOMDocumentTraversal.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMDocumentTraversal.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DOMDocumentTraversal.hpp 6 Jun 2002 20:53:06 -0000 1.3
+++ DOMDocumentTraversal.hpp 22 Aug 2002 15:04:57 -0000 1.4
@@ -89,8 +89,8 @@
/** @name Hidden constructors */
//@{
DOMDocumentTraversal() {};
- DOMDocumentTraversal(const DOMDocumentTraversal &other) {};
- DOMDocumentTraversal & operator = (const DOMDocumentTraversal &other) {return
*this;};
+ DOMDocumentTraversal(const DOMDocumentTraversal &) {};
+ DOMDocumentTraversal & operator = (const DOMDocumentTraversal &) {return
*this;};
//@}
public:
1.4 +3 -3 xml-xerces/c/src/xercesc/dom/DOMDocumentType.hpp
Index: DOMDocumentType.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMDocumentType.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DOMDocumentType.hpp 6 Jun 2002 20:53:06 -0000 1.3
+++ DOMDocumentType.hpp 22 Aug 2002 15:04:57 -0000 1.4
@@ -87,8 +87,8 @@
/** @name Hidden constructors */
//@{
DOMDocumentType() {};
- DOMDocumentType(const DOMDocumentType &other) {};
- DOMDocumentType & operator = (const DOMDocumentType &other) {return *this;};
+ DOMDocumentType(const DOMDocumentType &) {};
+ DOMDocumentType & operator = (const DOMDocumentType &) {return *this;};
//@}
public:
1.4 +3 -3 xml-xerces/c/src/xercesc/dom/DOMElement.hpp
Index: DOMElement.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMElement.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DOMElement.hpp 6 Jun 2002 20:53:06 -0000 1.3
+++ DOMElement.hpp 22 Aug 2002 15:04:57 -0000 1.4
@@ -103,8 +103,8 @@
/** @name Hidden constructors */
//@{
DOMElement() {};
- DOMElement(const DOMElement &other) {};
- DOMElement & operator = (const DOMElement &other) {return *this;};
+ DOMElement(const DOMElement &) {};
+ DOMElement & operator = (const DOMElement &) {return *this;};
//@}
public:
1.5 +3 -3 xml-xerces/c/src/xercesc/dom/DOMEntity.hpp
Index: DOMEntity.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMEntity.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- DOMEntity.hpp 7 Jun 2002 18:39:03 -0000 1.4
+++ DOMEntity.hpp 22 Aug 2002 15:04:57 -0000 1.5
@@ -110,8 +110,8 @@
/** @name Hidden constructors */
//@{
DOMEntity() {};
- DOMEntity(const DOMEntity &other) {};
- DOMEntity & operator = (const DOMEntity &other) {return *this;};
+ DOMEntity(const DOMEntity &) {};
+ DOMEntity & operator = (const DOMEntity &) {return *this;};
//@}
public:
1.4 +3 -3 xml-xerces/c/src/xercesc/dom/DOMEntityReference.hpp
Index: DOMEntityReference.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMEntityReference.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DOMEntityReference.hpp 6 Jun 2002 20:53:06 -0000 1.3
+++ DOMEntityReference.hpp 22 Aug 2002 15:04:57 -0000 1.4
@@ -100,8 +100,8 @@
/** @name Hidden constructors */
//@{
DOMEntityReference() {};
- DOMEntityReference(const DOMEntityReference &other) {};
- DOMEntityReference & operator = (const DOMEntityReference &other) {return
*this;};
+ DOMEntityReference(const DOMEntityReference &) {};
+ DOMEntityReference & operator = (const DOMEntityReference &) {return *this;};
//@}
public:
1.4 +5 -2 xml-xerces/c/src/xercesc/dom/DOMEntityResolver.hpp
Index: DOMEntityResolver.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMEntityResolver.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DOMEntityResolver.hpp 6 Jun 2002 20:53:06 -0000 1.3
+++ DOMEntityResolver.hpp 22 Aug 2002 15:04:57 -0000 1.4
@@ -59,6 +59,9 @@
/*
* $Log$
+ * Revision 1.4 2002/08/22 15:04:57 tng
+ * Remove unused parameter variables in inline functions.
+ *
* Revision 1.3 2002/06/06 20:53:06 tng
* Documentation Fix: Update the API Documentation for DOM headers
*
@@ -105,8 +108,8 @@
/** @name Hidden constructors */
//@{
DOMEntityResolver() {};
- DOMEntityResolver(const DOMEntityResolver &other) {};
- DOMEntityResolver & operator = (const DOMEntityResolver &other) {return *this;};
+ DOMEntityResolver(const DOMEntityResolver &) {};
+ DOMEntityResolver & operator = (const DOMEntityResolver &) {return *this;};
//@}
public:
1.6 +5 -2 xml-xerces/c/src/xercesc/dom/DOMError.hpp
Index: DOMError.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMError.hpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- DOMError.hpp 15 Jul 2002 19:25:25 -0000 1.5
+++ DOMError.hpp 22 Aug 2002 15:04:57 -0000 1.6
@@ -59,6 +59,9 @@
/*
* $Log$
+ * Revision 1.6 2002/08/22 15:04:57 tng
+ * Remove unused parameter variables in inline functions.
+ *
* Revision 1.5 2002/07/15 19:25:25 tng
* DOM L3: declare a dummy DOMError::set/getRelatedException
*
@@ -98,8 +101,8 @@
/** @name Hidden constructors */
//@{
DOMError() {};
- DOMError(const DOMError &other) {};
- DOMError & operator = (const DOMError &other) {return *this;};
+ DOMError(const DOMError &) {};
+ DOMError & operator = (const DOMError &) {return *this;};
//@}
public:
1.5 +5 -2 xml-xerces/c/src/xercesc/dom/DOMErrorHandler.hpp
Index: DOMErrorHandler.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMErrorHandler.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- DOMErrorHandler.hpp 15 Jul 2002 19:26:34 -0000 1.4
+++ DOMErrorHandler.hpp 22 Aug 2002 15:04:57 -0000 1.5
@@ -59,6 +59,9 @@
/*
* $Log$
+ * Revision 1.5 2002/08/22 15:04:57 tng
+ * Remove unused parameter variables in inline functions.
+ *
* Revision 1.4 2002/07/15 19:26:34 tng
* DOM L3: remove non standard resetErrors
*
@@ -101,8 +104,8 @@
/** @name Hidden constructors */
//@{
DOMErrorHandler() {};
- DOMErrorHandler(const DOMErrorHandler &other) {};
- DOMErrorHandler & operator = (const DOMErrorHandler &other) {return *this;};
+ DOMErrorHandler(const DOMErrorHandler &) {};
+ DOMErrorHandler & operator = (const DOMErrorHandler &) {return *this;};
//@}
public:
1.7 +3 -3 xml-xerces/c/src/xercesc/dom/DOMImplementation.hpp
Index: DOMImplementation.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMImplementation.hpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- DOMImplementation.hpp 15 Jul 2002 19:30:14 -0000 1.6
+++ DOMImplementation.hpp 22 Aug 2002 15:04:57 -0000 1.7
@@ -83,8 +83,8 @@
//@{
DOMImplementation() {}; // no plain
constructor
- DOMImplementation(const DOMImplementation &other) {}; // no copy
construtor.
- DOMImplementation & operator = (const DOMImplementation &other) {return
*this;}; // No Assignment
+ DOMImplementation(const DOMImplementation &) {}; // no copy construtor.
+ DOMImplementation & operator = (const DOMImplementation &) {return *this;};
// No Assignment
//@}
1.5 +5 -2 xml-xerces/c/src/xercesc/dom/DOMImplementationLS.hpp
Index: DOMImplementationLS.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMImplementationLS.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- DOMImplementationLS.hpp 6 Jun 2002 20:53:06 -0000 1.4
+++ DOMImplementationLS.hpp 22 Aug 2002 15:04:57 -0000 1.5
@@ -59,6 +59,9 @@
/*
* $Log$
+ * Revision 1.5 2002/08/22 15:04:57 tng
+ * Remove unused parameter variables in inline functions.
+ *
* Revision 1.4 2002/06/06 20:53:06 tng
* Documentation Fix: Update the API Documentation for DOM headers
*
@@ -103,8 +106,8 @@
/** @name Hidden constructors */
//@{
DOMImplementationLS() {};
- DOMImplementationLS(const DOMImplementationLS &other) {};
- DOMImplementationLS & operator = (const DOMImplementationLS &other) {return
*this;};
+ DOMImplementationLS(const DOMImplementationLS &) {};
+ DOMImplementationLS & operator = (const DOMImplementationLS &) {return *this;};
//@}
public:
1.3 +3 -3 xml-xerces/c/src/xercesc/dom/DOMImplementationSource.hpp
Index: DOMImplementationSource.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMImplementationSource.hpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- DOMImplementationSource.hpp 6 Jun 2002 20:53:06 -0000 1.2
+++ DOMImplementationSource.hpp 22 Aug 2002 15:04:57 -0000 1.3
@@ -83,8 +83,8 @@
/** @name Hidden constructors */
//@{
DOMImplementationSource() {};
- DOMImplementationSource(const DOMImplementationSource &other) {};
- DOMImplementationSource & operator = (const DOMImplementationSource &other)
{return *this;};
+ DOMImplementationSource(const DOMImplementationSource &) {};
+ DOMImplementationSource & operator = (const DOMImplementationSource &) {return
*this;};
//@}
1.7 +3 -3 xml-xerces/c/src/xercesc/dom/DOMInputSource.hpp
Index: DOMInputSource.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMInputSource.hpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- DOMInputSource.hpp 15 Jul 2002 18:26:31 -0000 1.6
+++ DOMInputSource.hpp 22 Aug 2002 15:04:57 -0000 1.7
@@ -102,8 +102,8 @@
/** @name Hidden constructors */
//@{
DOMInputSource() {};
- DOMInputSource(const DOMInputSource &other) {};
- DOMInputSource & operator = (const DOMInputSource &other) {return *this;};
+ DOMInputSource(const DOMInputSource &) {};
+ DOMInputSource & operator = (const DOMInputSource &) {return *this;};
//@}
public:
1.5 +5 -2 xml-xerces/c/src/xercesc/dom/DOMLocator.hpp
Index: DOMLocator.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMLocator.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- DOMLocator.hpp 6 Jun 2002 20:53:06 -0000 1.4
+++ DOMLocator.hpp 22 Aug 2002 15:04:57 -0000 1.5
@@ -59,6 +59,9 @@
/*
* $Log$
+ * Revision 1.5 2002/08/22 15:04:57 tng
+ * Remove unused parameter variables in inline functions.
+ *
* Revision 1.4 2002/06/06 20:53:06 tng
* Documentation Fix: Update the API Documentation for DOM headers
*
@@ -95,8 +98,8 @@
/** @name Hidden constructors */
//@{
DOMLocator() {};
- DOMLocator(const DOMLocator &other) {};
- DOMLocator & operator = (const DOMLocator &other) {return *this;};
+ DOMLocator(const DOMLocator &) {};
+ DOMLocator & operator = (const DOMLocator &) {return *this;};
//@}
public:
1.5 +3 -3 xml-xerces/c/src/xercesc/dom/DOMNamedNodeMap.hpp
Index: DOMNamedNodeMap.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMNamedNodeMap.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- DOMNamedNodeMap.hpp 6 Jun 2002 20:53:06 -0000 1.4
+++ DOMNamedNodeMap.hpp 22 Aug 2002 15:04:57 -0000 1.5
@@ -87,8 +87,8 @@
/** @name Hidden constructors */
//@{
DOMNamedNodeMap() {};
- DOMNamedNodeMap(const DOMNamedNodeMap &other) {};
- DOMNamedNodeMap & operator = (const DOMNamedNodeMap &other) {return *this;};
+ DOMNamedNodeMap(const DOMNamedNodeMap &) {};
+ DOMNamedNodeMap & operator = (const DOMNamedNodeMap &) {return *this;};
//@}
public:
1.11 +3 -3 xml-xerces/c/src/xercesc/dom/DOMNode.hpp
Index: DOMNode.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMNode.hpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- DOMNode.hpp 16 Aug 2002 19:20:49 -0000 1.10
+++ DOMNode.hpp 22 Aug 2002 15:04:57 -0000 1.11
@@ -188,8 +188,8 @@
/** @name Hidden constructors */
//@{
DOMNode() {};
- DOMNode(const DOMNode &other) {};
- DOMNode & operator = (const DOMNode &other) {return *this;};
+ DOMNode(const DOMNode &) {};
+ DOMNode & operator = (const DOMNode &) {return *this;};
//@}
public:
1.4 +3 -3 xml-xerces/c/src/xercesc/dom/DOMNodeFilter.hpp
Index: DOMNodeFilter.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMNodeFilter.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DOMNodeFilter.hpp 6 Jun 2002 20:53:06 -0000 1.3
+++ DOMNodeFilter.hpp 22 Aug 2002 15:04:57 -0000 1.4
@@ -92,8 +92,8 @@
/** @name Hidden constructors */
//@{
DOMNodeFilter() {};
- DOMNodeFilter(const DOMNodeFilter &other) {};
- DOMNodeFilter & operator = (const DOMNodeFilter &other) {return *this;};
+ DOMNodeFilter(const DOMNodeFilter &) {};
+ DOMNodeFilter & operator = (const DOMNodeFilter &) {return *this;};
//@}
public:
1.5 +3 -3 xml-xerces/c/src/xercesc/dom/DOMNodeIterator.hpp
Index: DOMNodeIterator.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMNodeIterator.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- DOMNodeIterator.hpp 25 Jun 2002 16:00:32 -0000 1.4
+++ DOMNodeIterator.hpp 22 Aug 2002 15:04:57 -0000 1.5
@@ -86,8 +86,8 @@
/** @name Hidden constructors */
//@{
DOMNodeIterator() {};
- DOMNodeIterator(const DOMNodeIterator &other) {};
- DOMNodeIterator & operator = (const DOMNodeIterator &other) {return *this;};
+ DOMNodeIterator(const DOMNodeIterator &) {};
+ DOMNodeIterator & operator = (const DOMNodeIterator &) {return *this;};
//@}
public:
1.6 +3 -3 xml-xerces/c/src/xercesc/dom/DOMNodeList.hpp
Index: DOMNodeList.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMNodeList.hpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- DOMNodeList.hpp 31 Jul 2002 20:38:20 -0000 1.5
+++ DOMNodeList.hpp 22 Aug 2002 15:04:57 -0000 1.6
@@ -86,8 +86,8 @@
/** @name Hidden constructors */
//@{
DOMNodeList() {};
- DOMNodeList(const DOMNodeList &other) {};
- DOMNodeList & operator = (const DOMNodeList &other) {return *this;};
+ DOMNodeList(const DOMNodeList &) {};
+ DOMNodeList & operator = (const DOMNodeList &) {return *this;};
//@}
public:
1.4 +3 -3 xml-xerces/c/src/xercesc/dom/DOMNotation.hpp
Index: DOMNotation.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMNotation.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DOMNotation.hpp 6 Jun 2002 20:53:06 -0000 1.3
+++ DOMNotation.hpp 22 Aug 2002 15:04:57 -0000 1.4
@@ -86,8 +86,8 @@
/** @name Hidden constructors */
//@{
DOMNotation() {};
- DOMNotation(const DOMNotation &other) {};
- DOMNotation & operator = (const DOMNotation &other) {return *this;};
+ DOMNotation(const DOMNotation &) {};
+ DOMNotation & operator = (const DOMNotation &) {return *this;};
//@}
public:
1.4 +3 -3 xml-xerces/c/src/xercesc/dom/DOMProcessingInstruction.hpp
Index: DOMProcessingInstruction.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMProcessingInstruction.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DOMProcessingInstruction.hpp 6 Jun 2002 20:53:06 -0000 1.3
+++ DOMProcessingInstruction.hpp 22 Aug 2002 15:04:57 -0000 1.4
@@ -81,8 +81,8 @@
/** @name Hidden constructors */
//@{
DOMProcessingInstruction() {};
- DOMProcessingInstruction(const DOMProcessingInstruction &other) {};
- DOMProcessingInstruction & operator = (const DOMProcessingInstruction &other)
{return *this;};
+ DOMProcessingInstruction(const DOMProcessingInstruction &) {};
+ DOMProcessingInstruction & operator = (const DOMProcessingInstruction &)
{return *this;};
//@}
public:
1.6 +3 -3 xml-xerces/c/src/xercesc/dom/DOMRange.hpp
Index: DOMRange.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMRange.hpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- DOMRange.hpp 25 Jun 2002 16:00:32 -0000 1.5
+++ DOMRange.hpp 22 Aug 2002 15:04:57 -0000 1.6
@@ -78,8 +78,8 @@
/** @name Hidden constructors */
//@{
DOMRange() {};
- DOMRange(const DOMRange &other) {};
- DOMRange & operator = (const DOMRange &other) {return *this;};
+ DOMRange(const DOMRange &) {};
+ DOMRange & operator = (const DOMRange &) {return *this;};
//@}
public:
1.6 +3 -3 xml-xerces/c/src/xercesc/dom/DOMText.hpp
Index: DOMText.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMText.hpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- DOMText.hpp 15 Jul 2002 18:29:48 -0000 1.5
+++ DOMText.hpp 22 Aug 2002 15:04:57 -0000 1.6
@@ -94,8 +94,8 @@
/** @name Hidden constructors */
//@{
DOMText() {};
- DOMText(const DOMText &other) {};
- DOMText & operator = (const DOMText &other) {return *this;};
+ DOMText(const DOMText &) {};
+ DOMText & operator = (const DOMText &) {return *this;};
//@}
public:
1.5 +3 -3 xml-xerces/c/src/xercesc/dom/DOMTreeWalker.hpp
Index: DOMTreeWalker.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMTreeWalker.hpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- DOMTreeWalker.hpp 25 Jun 2002 16:00:32 -0000 1.4
+++ DOMTreeWalker.hpp 22 Aug 2002 15:04:57 -0000 1.5
@@ -92,8 +92,8 @@
/** @name Hidden constructors */
//@{
DOMTreeWalker() {};
- DOMTreeWalker(const DOMTreeWalker &other) {};
- DOMTreeWalker & operator = (const DOMTreeWalker &other) {return *this;};
+ DOMTreeWalker(const DOMTreeWalker &) {};
+ DOMTreeWalker & operator = (const DOMTreeWalker &) {return *this;};
//@}
public:
1.4 +3 -3 xml-xerces/c/src/xercesc/dom/DOMUserDataHandler.hpp
Index: DOMUserDataHandler.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMUserDataHandler.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- DOMUserDataHandler.hpp 27 Jun 2002 19:19:12 -0000 1.3
+++ DOMUserDataHandler.hpp 22 Aug 2002 15:04:57 -0000 1.4
@@ -85,8 +85,8 @@
/** @name Hidden constructors */
//@{
DOMUserDataHandler() {};
- DOMUserDataHandler(const DOMUserDataHandler &other) {};
- DOMUserDataHandler & operator = (const DOMUserDataHandler &other) {return
*this;};
+ DOMUserDataHandler(const DOMUserDataHandler &) {};
+ DOMUserDataHandler & operator = (const DOMUserDataHandler &) {return *this;};
//@}
public:
1.7 +6 -3 xml-xerces/c/src/xercesc/dom/DOMWriter.hpp
Index: DOMWriter.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMWriter.hpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- DOMWriter.hpp 25 Jun 2002 16:04:49 -0000 1.6
+++ DOMWriter.hpp 22 Aug 2002 15:04:57 -0000 1.7
@@ -60,6 +60,9 @@
/*
* $Id$
* $Log$
+ * Revision 1.7 2002/08/22 15:04:57 tng
+ * Remove unused parameter variables in inline functions.
+ *
* Revision 1.6 2002/06/25 16:04:49 tng
* DOM L3: add function release().
*
@@ -313,8 +316,8 @@
/** @name Hidden constructors */
//@{
DOMWriter() {};
- DOMWriter(const DOMWriter &other) {};
- DOMWriter & operator = (const DOMWriter &other) {return *this;};
+ DOMWriter(const DOMWriter &) {};
+ DOMWriter & operator = (const DOMWriter &) {return *this;};
//@}
1.7 +6 -3 xml-xerces/c/src/xercesc/dom/DOMWriterFilter.hpp
Index: DOMWriterFilter.hpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMWriterFilter.hpp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- DOMWriterFilter.hpp 6 Jun 2002 20:53:07 -0000 1.6
+++ DOMWriterFilter.hpp 22 Aug 2002 15:04:57 -0000 1.7
@@ -60,6 +60,9 @@
/*
* $Id$
* $Log$
+ * Revision 1.7 2002/08/22 15:04:57 tng
+ * Remove unused parameter variables in inline functions.
+ *
* Revision 1.6 2002/06/06 20:53:07 tng
* Documentation Fix: Update the API Documentation for DOM headers
*
@@ -108,8 +111,8 @@
/** @name Hidden constructors */
//@{
DOMWriterFilter() {};
- DOMWriterFilter(const DOMWriterFilter &other) {};
- DOMWriterFilter & operator = (const DOMWriterFilter &other) {return *this;};
+ DOMWriterFilter(const DOMWriterFilter &) {};
+ DOMWriterFilter & operator = (const DOMWriterFilter &) {return *this;};
//@}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]