[GME-commit]
GMESRC/GME/Include/xalanc/XalanDOM XalanDOMString.cpp,1.2,1.3
gme-commit at list.isis.vanderbilt.edu
gme-commit at list.isis.vanderbilt.edu
Tue Oct 12 17:06:09 CDT 2004
Update of /var/lib/gme/GMESRC/GME/Include/xalanc/XalanDOM
In directory braindrain:/tmp/cvs-serv16670/XalanDOM
Modified Files:
XalanDOMString.cpp
Log Message:
Xalan files rolled back (stlport needs no modification to code, unlike sgistlport)
CVS User: zolmol
Index: XalanDOMString.cpp
===================================================================
RCS file: /var/lib/gme/GMESRC/GME/Include/xalanc/XalanDOM/XalanDOMString.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** XalanDOMString.cpp 20 Apr 2004 22:04:17 -0000 1.2
--- XalanDOMString.cpp 12 Oct 2004 21:06:07 -0000 1.3
***************
*** 311,334 ****
swap(temp);
#else
- // introduced by ZolMol in order to compile with STL of GME (Sgi stl)
- #ifdef XALAN_NO_STD_NAMESPACE
- XalanDOMString temp;
-
- temp.m_data.reserve(theLastPosition - theFirstPosition + 1);
-
- while(theFirstPosition != theLastPosition)
- {
- temp.m_data.push_back(*theFirstPosition);
-
- ++theFirstPosition;
- }
-
- temp.m_data.push_back(XalanDOMChar(0));
-
- temp.m_size = temp.m_data.size() - 1;
-
- swap(temp);
- #else
- //end mod by ZolMol
m_data.reserve(theLastPosition - theFirstPosition + 1);
--- 311,314 ----
***************
*** 339,343 ****
m_size = m_data.size() - 1;
#endif
- #endif // this line introduced by ZolMol
invariants();
--- 319,322 ----
More information about the GME-commit
mailing list