You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@locus.apache.org on 2000/12/01 23:20:48 UTC

cvs commit: xml-xalan/c/src/XPath FunctionTranslate.cpp

dbertoni    00/12/01 14:20:48

  Modified:    c/src/XPath FunctionTranslate.cpp
  Log:
  Changes for vector iterator issues.
  
  Revision  Changes    Path
  1.6       +1 -1      xml-xalan/c/src/XPath/FunctionTranslate.cpp
  
  Index: FunctionTranslate.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/FunctionTranslate.cpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- FunctionTranslate.cpp	2000/11/21 21:08:19	1.5
  +++ FunctionTranslate.cpp	2000/12/01 22:20:47	1.6
  @@ -139,7 +139,7 @@
   	}
   	else
   	{
  -		return executionContext.getXObjectFactory().createString(theBuffer.begin(), theSize);
  +		return executionContext.getXObjectFactory().createString(&*theBuffer.begin(), theSize);
   	}
   }