[commit] r1585 - trunk/GME/XmlBackEnd

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Tue Oct 4 14:49:32 CDT 2011


Author: ksmyth
Date: Tue Oct  4 14:49:32 2011
New Revision: 1585

Log:
Fix compile under DEBUG

Modified:
   trunk/GME/XmlBackEnd/CoreXmlFile.cpp

Modified: trunk/GME/XmlBackEnd/CoreXmlFile.cpp
==============================================================================
--- trunk/GME/XmlBackEnd/CoreXmlFile.cpp	Tue Oct  4 14:16:30 2011	(r1584)
+++ trunk/GME/XmlBackEnd/CoreXmlFile.cpp	Tue Oct  4 14:49:32 2011	(r1585)
@@ -3655,7 +3655,7 @@
 #ifdef DEBUG
 	// if the object is deleted do not deal with it
 	// possible optimization: limit analysis to ( parent == 0) case only (when incoming parameter is 0)
-	XMLCh* x_deleted = ParserLiterals::Main::deleted;
+	const XMLCh* x_deleted = ParserLiterals::Main::deleted;
 	smart_Ch deletedStr = XMLString::transcode( e->getAttribute( x_deleted));
 	bool deleted = (strcmp( deletedStr, "true" ) == 0);
 	if( deleted)


More information about the gme-commit mailing list