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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to