[Mobies-commit] [commit] r4135 - UDM/trunk/src/UdmDom

ksmyth at redhat1.isis.vanderbilt.edu ksmyth at redhat1.isis.vanderbilt.edu
Thu Oct 11 17:22:24 CDT 2012


Author: ksmyth
Date: Thu Oct 11 17:22:24 2012
New Revision: 4135

Log:
Fix linux build

Modified:
   UDM/trunk/src/UdmDom/UdmDom.cpp

Modified: UDM/trunk/src/UdmDom/UdmDom.cpp
==============================================================================
--- UDM/trunk/src/UdmDom/UdmDom.cpp	Thu Oct 11 17:01:20 2012	(r4134)
+++ UDM/trunk/src/UdmDom/UdmDom.cpp	Thu Oct 11 17:22:24 2012	(r4135)
@@ -428,7 +428,7 @@
 	utf8::unchecked::utf8to16(toTranscode.begin(), toTranscode.end(), std::back_inserter(transcoded));
 	XMLCh* const retVal = (XMLCh*) manager->allocate((transcoded.size() + 1) * sizeof(XMLCh));
 	XMLCh* copy = retVal;
-	for (std::vector<XMLCh>::const_iterator it = transcoded.cbegin(); it != transcoded.cend(); it++)
+	for (std::vector<XMLCh>::iterator it = transcoded.begin(); it != transcoded.end(); it++)
 	{
 		*copy = *it;
 		copy++;


More information about the Mobies-commit mailing list