cargilld 2004/02/05 10:08:38
Modified: c/src/xercesc/util HashPtr.cpp XMLStringTokenizer.cpp
c/src/xercesc/util/Platforms/AIX AIXPlatformUtils.cpp
c/src/xercesc/util/Transcoders/Iconv IconvTransService.cpp
c/src/xercesc/validators/schema SchemaElementDecl.hpp
Log:
Code cleanup changes to get rid of various compiler diagnostic messages.
Revision Changes Path
1.6 +1 -1 xml-xerces/c/src/xercesc/util/HashPtr.cpp
Index: HashPtr.cpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/HashPtr.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- HashPtr.cpp 17 Dec 2003 00:18:35 -0000 1.5
+++ HashPtr.cpp 5 Feb 2004 18:08:38 -0000 1.6
@@ -67,7 +67,7 @@
}
unsigned int HashPtr::getHashVal(const void *const key, unsigned int mod
- , MemoryManager* const manager)
+ , MemoryManager* const)
{
return ((long)key % (unsigned long)mod);
}
1.9 +4 -1 xml-xerces/c/src/xercesc/util/XMLStringTokenizer.cpp
Index: XMLStringTokenizer.cpp
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/XMLStringTokenizer.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- XMLStringTokenizer.cpp 29 Jan 2004 11:48:47 -0000 1.8
+++ XMLStringTokenizer.cpp 5 Feb 2004 18:08:38 -0000 1.9
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.9 2004/02/05 18:08:38 cargilld
+ * Code cleanup changes to get rid of various compiler diagnostic messages.
+ *
* Revision 1.8 2004/01/29 11:48:47 cargilld
* Code cleanup changes to get rid of various compiler diagnostic messages.
*
@@ -134,7 +137,7 @@
: fOffset(0)
, fStringLen(XMLString::stringLen(srcStr))
, fString(XMLString::replicate(srcStr, manager))
- , fDelimeters(XMLString::replicate(delim, fMemoryManager))
+ , fDelimeters(XMLString::replicate(delim, manager))
, fTokens(0)
, fMemoryManager(manager)
{
1.22 +4 -4 xml-xerces/c/src/xercesc/util/Platforms/AIX/AIXPlatformUtils.cpp
Index: AIXPlatformUtils.cpp
===================================================================
RCS file:
/home/cvs/xml-xerces/c/src/xercesc/util/Platforms/AIX/AIXPlatformUtils.cpp,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- AIXPlatformUtils.cpp 13 Jan 2004 16:34:21 -0000 1.21
+++ AIXPlatformUtils.cpp 5 Feb 2004 18:08:38 -0000 1.22
@@ -238,7 +238,7 @@
}
FileHandle XMLPlatformUtils::openFile(const char* const fileName
- , MemoryManager* const manager)
+ , MemoryManager* const)
{
FileHandle retVal = (FILE*)fopen( fileName , "rb" );
@@ -256,7 +256,7 @@
}
FileHandle XMLPlatformUtils::openFileToWrite(const char* const fileName
- , MemoryManager* const manager)
+ , MemoryManager* const)
{
return fopen( fileName , "wb" );
}
@@ -542,7 +542,7 @@
#endif // APP_NO_THREADS
-FileHandle XMLPlatformUtils::openStdInHandle(MemoryManager* const manager)
+FileHandle XMLPlatformUtils::openStdInHandle(MemoryManager* const)
{
return (FileHandle)fdopen(dup(0), "rb");
}
1.15 +2 -2
xml-xerces/c/src/xercesc/util/Transcoders/Iconv/IconvTransService.cpp
Index: IconvTransService.cpp
===================================================================
RCS file:
/home/cvs/xml-xerces/c/src/xercesc/util/Transcoders/Iconv/IconvTransService.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- IconvTransService.cpp 29 Jan 2004 11:51:21 -0000 1.14
+++ IconvTransService.cpp 5 Feb 2004 18:08:38 -0000 1.15
@@ -256,7 +256,7 @@
// IconvLCPTranscoder: The virtual transcoder API
// ---------------------------------------------------------------------------
unsigned int IconvLCPTranscoder::calcRequiredSize(const char* const srcText
- , MemoryManager* const manager)
+ , MemoryManager* const)
{
if (!srcText)
return 0;
1.21 +4 -1 xml-xerces/c/src/xercesc/validators/schema/SchemaElementDecl.hpp
Index: SchemaElementDecl.hpp
===================================================================
RCS file:
/home/cvs/xml-xerces/c/src/xercesc/validators/schema/SchemaElementDecl.hpp,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- SchemaElementDecl.hpp 29 Jan 2004 11:52:31 -0000 1.20
+++ SchemaElementDecl.hpp 5 Feb 2004 18:08:38 -0000 1.21
@@ -56,6 +56,9 @@
/*
* $Log$
+ * Revision 1.21 2004/02/05 18:08:38 cargilld
+ * Code cleanup changes to get rid of various compiler diagnostic messages.
+ *
* Revision 1.20 2004/01/29 11:52:31 cargilld
* Code cleanup changes to get rid of various compiler diagnostic messages.
*
@@ -825,7 +828,7 @@
// SchemaElementDecl: Setter methods
// ---------------------------------------------------------------------------
inline void
-SchemaElementDecl::setElemId(unsigned int elemId)
+SchemaElementDecl::setElemId(unsigned int)
{
//there is not getElemId so this is not needed. mark deprecated.
//fElemId = elemId;
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]