cargilld    2005/01/12 12:06:55

  Modified:    c/src/xercesc/validators/schema/identity ValueStore.hpp
               c/src/xercesc/util/Platforms/Linux LinuxPlatformUtils.cpp
               c/src/xercesc/util RefHash3KeysIdPool.c
               c/src/xercesc/dom/impl DOMDeepNodeListPool.c
                        DOMNormalizer.hpp
               c/src/xercesc/dom DOMNode.hpp
  Log:
  Remove warning messages.
  
  Revision  Changes    Path
  1.8       +2 -1      
xml-xerces/c/src/xercesc/validators/schema/identity/ValueStore.hpp
  
  Index: ValueStore.hpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/c/src/xercesc/validators/schema/identity/ValueStore.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ValueStore.hpp    8 Sep 2004 13:56:59 -0000       1.7
  +++ ValueStore.hpp    12 Jan 2005 20:06:55 -0000      1.8
  @@ -38,6 +38,7 @@
   // 
---------------------------------------------------------------------------
   //  Forward Declaration
   // 
---------------------------------------------------------------------------
  +class FieldActivator;
   class IdentityConstraint;
   class XMLScanner;
   class ValueStoreCache;
  
  
  
  1.25      +7 -4      
xml-xerces/c/src/xercesc/util/Platforms/Linux/LinuxPlatformUtils.cpp
  
  Index: LinuxPlatformUtils.cpp
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/c/src/xercesc/util/Platforms/Linux/LinuxPlatformUtils.cpp,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- LinuxPlatformUtils.cpp    8 Sep 2004 13:56:40 -0000       1.24
  +++ LinuxPlatformUtils.cpp    12 Jan 2005 20:06:55 -0000      1.25
  @@ -16,6 +16,9 @@
   
   /*
    * $Log$
  + * Revision 1.25  2005/01/12 20:06:55  cargilld
  + * Remove warning messages.
  + *
    * Revision 1.24  2004/09/08 13:56:40  peiyongz
    * Apache License Version 2.0
    *
  @@ -378,7 +381,7 @@
   }
   
   FileHandle XMLPlatformUtils::openFile(const char* const fileName
  -                                      , MemoryManager* const manager)
  +                                      , MemoryManager* const /* manager */)
   {
       FileHandle retVal = (FILE*)fopen( fileName , "rb" );
   
  @@ -396,12 +399,12 @@
   }
   
   FileHandle XMLPlatformUtils::openFileToWrite(const char* const fileName
  -                                             , MemoryManager* const manager)
  +                                             , MemoryManager* const /* 
manager */)
   {
       return fopen( fileName , "wb" );
   }
   
  -FileHandle XMLPlatformUtils::openStdInHandle(MemoryManager* const manager)
  +FileHandle XMLPlatformUtils::openStdInHandle(MemoryManager* const /* manager 
*/)
   {
       return (FileHandle)fdopen(dup(0), "rb");
   }
  @@ -496,7 +499,7 @@
   }
   
   bool XMLPlatformUtils::isRelative(const XMLCh* const toCheck
  -                                  , MemoryManager* const manager)
  +                                  , MemoryManager* const /* manager */)
   {
       // Check for pathological case of empty path
       if (!toCheck[0])
  
  
  
  1.17      +7 -1      xml-xerces/c/src/xercesc/util/RefHash3KeysIdPool.c
  
  Index: RefHash3KeysIdPool.c
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/RefHash3KeysIdPool.c,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- RefHash3KeysIdPool.c      7 Jan 2005 15:12:10 -0000       1.16
  +++ RefHash3KeysIdPool.c      12 Jan 2005 20:06:55 -0000      1.17
  @@ -16,6 +16,9 @@
   
   /**
    * $Log$
  + * Revision 1.17  2005/01/12 20:06:55  cargilld
  + * Remove warning messages.
  + *
    * Revision 1.16  2005/01/07 15:12:10  amassari
    * Removed warnings
    *
  @@ -173,8 +176,11 @@
       initialize(modulus);
   
       // create default hasher
  -
  +#if defined (XML_GCC_VERSION) && (XML_GCC_VERSION < 29600)
  +              fHash = new HashXMLCh();
  +#else
       fHash = new (fMemoryManager) HashXMLCh();
  +#endif    
   
       //
       //  Allocate the initial id pointers array. We don't have to zero them
  
  
  
  1.13      +5 -1      xml-xerces/c/src/xercesc/dom/impl/DOMDeepNodeListPool.c
  
  Index: DOMDeepNodeListPool.c
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/impl/DOMDeepNodeListPool.c,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- DOMDeepNodeListPool.c     18 Nov 2004 01:35:20 -0000      1.12
  +++ DOMDeepNodeListPool.c     12 Jan 2005 20:06:55 -0000      1.13
  @@ -114,7 +114,11 @@
       initialize(modulus);
   
       // create default hasher
  +#if defined (XML_GCC_VERSION) && (XML_GCC_VERSION < 29600)
  +    fHash = new HashPtr();
  +#else
       fHash = new (fMemoryManager) HashPtr();
  +#endif    
   
       //
       //  Allocate the initial id pointers array. We don't have to zero them
  
  
  
  1.8       +1 -0      xml-xerces/c/src/xercesc/dom/impl/DOMNormalizer.hpp
  
  Index: DOMNormalizer.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/impl/DOMNormalizer.hpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- DOMNormalizer.hpp 8 Sep 2004 13:55:52 -0000       1.7
  +++ DOMNormalizer.hpp 12 Jan 2005 20:06:55 -0000      1.8
  @@ -36,6 +36,7 @@
   XERCES_CPP_NAMESPACE_BEGIN
   
   class DOMConfigurationImpl;
  +class DOMErrorHandler;
   class DOMDocumentImpl;
   class DOMNode;
   class DOMElementImpl;
  
  
  
  1.20      +2 -2      xml-xerces/c/src/xercesc/dom/DOMNode.hpp
  
  Index: DOMNode.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/dom/DOMNode.hpp,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- DOMNode.hpp       7 Jan 2005 15:31:06 -0000       1.19
  +++ DOMNode.hpp       12 Jan 2005 20:06:55 -0000      1.20
  @@ -142,7 +142,7 @@
       // 
-----------------------------------------------------------------------
       /** @name Hidden constructors */
       //@{    
  -    DOMNode() {};
  +    DOMNode() {}
       DOMNode(const DOMNode &) {}
       //@}
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to