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...@apache.org on 2001/01/31 19:14:43 UTC

cvs commit: xml-xalan/c/src/Include XalanAutoPtr.hpp

dbertoni    01/01/31 10:14:43

  Modified:    c/src/Include XalanAutoPtr.hpp
  Log:
  Use unsigned long instead of size_t.
  
  Revision  Changes    Path
  1.3       +1 -1      xml-xalan/c/src/Include/XalanAutoPtr.hpp
  
  Index: XalanAutoPtr.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/Include/XalanAutoPtr.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- XalanAutoPtr.hpp	2000/12/21 04:25:33	1.2
  +++ XalanAutoPtr.hpp	2001/01/31 18:14:40	1.3
  @@ -214,7 +214,7 @@
   	}
   
   	Type&
  -	operator[](size_t	index) const
  +	operator[](unsigned long	index) const
   	{
   		return m_pointer[index];
   	}