Author: dbertoni
Date: Wed Jun 15 13:57:44 2005
New Revision: 190805
URL: http://svn.apache.org/viewcvs?rev=190805&view=rev
Log:
Removed superfluous CV-qualifier from cast.
Modified:
xerces/c/trunk/src/xercesc/util/Base64.cpp
Modified: xerces/c/trunk/src/xercesc/util/Base64.cpp
URL:
http://svn.apache.org/viewcvs/xerces/c/trunk/src/xercesc/util/Base64.cpp?rev=190805&r1=190804&r2=190805&view=diff
==============================================================================
--- xerces/c/trunk/src/xercesc/util/Base64.cpp (original)
+++ xerces/c/trunk/src/xercesc/util/Base64.cpp Wed Jun 15 13:57:44 2005
@@ -549,7 +549,7 @@
//
// remove all XML whitespaces from the base64Data
//
- int inputLength = XMLString::stringLen( (const char* const)inputData );
+ int inputLength = XMLString::stringLen( (const char*)inputData );
XMLByte* rawInputData = (XMLByte*) getExternalMemory(memMgr,
(inputLength+1) * sizeof(XMLByte));
ArrayJanitor<XMLByte> jan(rawInputData, memMgr ? memMgr :
XMLPlatformUtils::fgMemoryManager);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]