You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by kn...@apache.org on 2002/10/15 20:11:02 UTC

cvs commit: xml-xerces/c/src/xercesc/util/regx Token.cpp

knoaman     2002/10/15 11:11:02

  Modified:    c/src/xercesc/util/regx Token.cpp
  Log:
  [Bug 13489]: missing 'return' in Token.cpp
  
  Revision  Changes    Path
  1.3       +4 -1      xml-xerces/c/src/xercesc/util/regx/Token.cpp
  
  Index: Token.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/regx/Token.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Token.cpp	18 Mar 2002 19:29:53 -0000	1.2
  +++ Token.cpp	15 Oct 2002 18:11:02 -0000	1.3
  @@ -56,6 +56,9 @@
   
   /*
    * $Log$
  + * Revision 1.3  2002/10/15 18:11:02  knoaman
  + * [Bug 13489]: missing 'return' in Token.cpp
  + *
    * Revision 1.2  2002/03/18 19:29:53  knoaman
    * Change constant names to eliminate possible conflict with user defined ones.
    *
  @@ -399,7 +402,7 @@
   	case T_NEGATIVELOOKAHEAD:
   	case T_LOOKBEHIND:
   	case T_NEGATIVELOOKBEHIND:
  -		FC_CONTINUE;
  +		return FC_CONTINUE;
   //	default:
   //		throw;
   	}
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org