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/03/07 17:10:42 UTC

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

dbertoni    00/03/07 08:10:42

  Modified:    c/src/XPath MutableNodeRefList.cpp
  Log:
  Fixed signed/unsigned mismatch.
  
  Revision  Changes    Path
  1.4       +1 -1      xml-xalan/c/src/XPath/MutableNodeRefList.cpp
  
  Index: MutableNodeRefList.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XPath/MutableNodeRefList.cpp,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- MutableNodeRefList.cpp	2000/02/17 20:29:51	1.3
  +++ MutableNodeRefList.cpp	2000/03/07 16:10:41	1.4
  @@ -489,7 +489,7 @@
   		bool				found1 = false;
   		bool				found2 = false;
   
  -		for(int i = 0; i < nNodes; i++)
  +		for(unsigned int i = 0; i < nNodes; i++)
   		{
   			const DOM_Node	child = children.item(i);