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/06/01 16:35:18 UTC

cvs commit: xml-xalan/c/src/PlatformSupport URISupport.cpp

dbertoni    00/06/01 07:35:17

  Modified:    c/src/PlatformSupport URISupport.cpp
  Log:
  Added missing const.
  
  Revision  Changes    Path
  1.3       +1 -1      xml-xalan/c/src/PlatformSupport/URISupport.cpp
  
  Index: URISupport.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/PlatformSupport/URISupport.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- URISupport.cpp	2000/05/29 22:23:39	1.2
  +++ URISupport.cpp	2000/06/01 14:35:17	1.3
  @@ -225,7 +225,7 @@
   
   	// OK, look for a quick, cheap exit...
   	const unsigned int	len = length(uriString);
  -	unsigned int		index = indexOf(uriString, '\\');
  +	const unsigned int	index = indexOf(uriString, '\\');
   
   	if (index != len)
   	{