You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by db...@apache.org on 2005/06/15 22:57:45 UTC

svn commit: r190805 - /xerces/c/trunk/src/xercesc/util/Base64.cpp

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: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org