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/12/14 21:43:00 UTC

cvs commit: xml-xalan/c/src/XSLT ResultTreeFrag.cpp

dbertoni    01/12/14 12:43:00

  Modified:    c/src/XSLT ResultTreeFrag.cpp
  Log:
  Added missing dummy return statements.
  
  Revision  Changes    Path
  1.3       +6 -0      xml-xalan/c/src/XSLT/ResultTreeFrag.cpp
  
  Index: ResultTreeFrag.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/ResultTreeFrag.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ResultTreeFrag.cpp	2001/11/01 15:59:57	1.2
  +++ ResultTreeFrag.cpp	2001/12/14 20:43:00	1.3
  @@ -286,6 +286,9 @@
   ResultTreeFrag::appendChild(XalanNode*	/* newChild */)
   {
   	throw XalanDOMException(XalanDOMException::NO_MODIFICATION_ALLOWED_ERR);
  +
  +	// Dummy return value...
  +	return 0;
   }
   
   
  @@ -294,6 +297,9 @@
   ResultTreeFrag::removeChild(XalanNode*	/* oldChild */)
   {
   	throw XalanDOMException(XalanDOMException::NO_MODIFICATION_ALLOWED_ERR);
  +
  +	// Dummy return value...
  +	return 0;
   }
   
   
  
  
  

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