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 di...@apache.org on 2005/01/21 17:46:56 UTC

cvs commit: ws-axis/c/src/soap/xsd/constraints MaxLength.hpp MinLength.hpp Pattern.hpp WhiteSpace.hpp

dicka       2005/01/21 08:46:56

  Modified:    c/src/soap/xsd/constraints MaxLength.hpp MinLength.hpp
                        Pattern.hpp WhiteSpace.hpp
  Log:
  Remove compilation warning on AIX.
  
  PR: AXISCPP-155
  Submitted by: Adrian Dick
  
  Revision  Changes    Path
  1.2       +1 -1      ws-axis/c/src/soap/xsd/constraints/MaxLength.hpp
  
  Index: MaxLength.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/soap/xsd/constraints/MaxLength.hpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- MaxLength.hpp	21 Jan 2005 15:06:56 -0000	1.1
  +++ MaxLength.hpp	21 Jan 2005 16:46:55 -0000	1.2
  @@ -31,7 +31,7 @@
    *   @author Adrian Dick (adrian.dick@uk.ibm.com)
    *
    */
  -class MaxLength : IConstrainingFacet {
  +class MaxLength : private IConstrainingFacet {
   
   public:
   
  
  
  
  1.2       +1 -1      ws-axis/c/src/soap/xsd/constraints/MinLength.hpp
  
  Index: MinLength.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/soap/xsd/constraints/MinLength.hpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- MinLength.hpp	21 Jan 2005 15:06:56 -0000	1.1
  +++ MinLength.hpp	21 Jan 2005 16:46:55 -0000	1.2
  @@ -31,7 +31,7 @@
    *   @author Adrian Dick (adrian.dick@uk.ibm.com)
    *
    */
  -class MinLength : IConstrainingFacet {
  +class MinLength : private IConstrainingFacet {
   
   public:
   
  
  
  
  1.2       +1 -1      ws-axis/c/src/soap/xsd/constraints/Pattern.hpp
  
  Index: Pattern.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/soap/xsd/constraints/Pattern.hpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Pattern.hpp	20 Jan 2005 09:51:27 -0000	1.1
  +++ Pattern.hpp	21 Jan 2005 16:46:55 -0000	1.2
  @@ -32,7 +32,7 @@
    *   @author Adrian Dick (adrian.dick@uk.ibm.com)
    *
    */
  -class Pattern : IConstrainingFacet {
  +class Pattern : private IConstrainingFacet {
   
   public:
   
  
  
  
  1.3       +1 -1      ws-axis/c/src/soap/xsd/constraints/WhiteSpace.hpp
  
  Index: WhiteSpace.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/soap/xsd/constraints/WhiteSpace.hpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- WhiteSpace.hpp	21 Jan 2005 03:05:41 -0000	1.2
  +++ WhiteSpace.hpp	21 Jan 2005 16:46:55 -0000	1.3
  @@ -38,7 +38,7 @@
    *   @author Adrian Dick (adrian.dick@uk.ibm.com)
    *
    */
  -class WhiteSpace : IConstrainingFacet {
  +class WhiteSpace : private IConstrainingFacet {
   
   public: