You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by am...@apache.org on 2004/09/28 10:54:34 UTC

cvs commit: xml-xerces/c/src/xercesc/framework/psvi XSValue.cpp

amassari    2004/09/28 01:54:34

  Modified:    c/src/xercesc/framework/psvi XSValue.cpp
  Log:
  Silence a warning about missing final "return"
  
  Revision  Changes    Path
  1.13      +10 -2     xml-xerces/c/src/xercesc/framework/psvi/XSValue.cpp
  
  Index: XSValue.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/XSValue.cpp,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- XSValue.cpp	23 Sep 2004 21:22:47 -0000	1.12
  +++ XSValue.cpp	28 Sep 2004 08:54:34 -0000	1.13
  @@ -16,6 +16,9 @@
   
   /*
    * $Log$
  + * Revision 1.13  2004/09/28 08:54:34  amassari
  + * Silence a warning about missing final "return"
  + *
    * Revision 1.12  2004/09/23 21:22:47  peiyongz
    * Documentation
    * st_noContent added
  @@ -1192,7 +1195,7 @@
           status = st_FOCA0002;
           return 0;
       }
  -
  +    return 0;
   }
   
   XMLCh* XSValue::getCanRepStrings(const XMLCh*         const content    
  @@ -1282,6 +1285,7 @@
           status = st_FOCA0002;
           return 0;
       }
  +    return 0;
   }
   
   XSValue*
  @@ -1642,6 +1646,7 @@
           status = st_FOCA0002;
           return 0; 
       }
  +    return 0; 
   }
   
   XSValue*  
  @@ -1823,6 +1828,7 @@
           status = st_FOCA0002;
           return 0; 
       }
  +    return 0; 
   }
   
   // ---------------------------------------------------------------------------
  
  
  

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