You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2005/03/08 11:32:00 UTC

cvs commit: ws-axis/c/src/soap SoapFault.cpp SoapFault.h

samisa      2005/03/08 02:32:00

  Modified:    c/src/soap SoapFault.cpp SoapFault.h
  Log:
  Eliminated compiler warnings. AXISCPP-517
  
  Revision  Changes    Path
  1.50      +8 -0      ws-axis/c/src/soap/SoapFault.cpp
  
  Index: SoapFault.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/soap/SoapFault.cpp,v
  retrieving revision 1.49
  retrieving revision 1.50
  diff -u -r1.49 -r1.50
  --- SoapFault.cpp	15 Feb 2005 22:34:25 -0000	1.49
  +++ SoapFault.cpp	8 Mar 2005 10:31:59 -0000	1.50
  @@ -48,6 +48,14 @@
   #include "../common/AxisTrace.h"
   #include "../common/AxisConfig.h"
   
  +
  +/*
  + * This array of structure is used to store all the soap faults
  + * which are used in Axis C++. Each time a fault object is needed it is
  + * created using this array, in SoapFault class.
  + */
  +static SoapFaultStruct* s_parrSoapFaultStruct;
  +
   extern AxisConfig* g_pConfig;
   AXIS_CPP_NAMESPACE_START
   extern SoapEnvVersionsStruct gs_SoapEnvVersionsStruct[VERSION_LAST];
  
  
  
  1.12      +0 -6      ws-axis/c/src/soap/SoapFault.h
  
  Index: SoapFault.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/soap/SoapFault.h,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- SoapFault.h	15 Feb 2005 22:34:25 -0000	1.11
  +++ SoapFault.h	8 Mar 2005 10:31:59 -0000	1.12
  @@ -42,12 +42,6 @@
       const char* pcFaultDetail;
   } SoapFaultStruct;
   
  -/*
  - * This array of structure is used to store all the soap faults
  - * which are used in Axis C++. Each time a fault object is needed it is
  - * created using this array, in SoapFault class.
  - */
  -static SoapFaultStruct* s_parrSoapFaultStruct;
   
   /**
    *  @class SoapFault