Return-Path: Delivered-To: apmail-xml-xerces-cvs-archive@www.apache.org Received: (qmail 17622 invoked from network); 15 Feb 2004 19:37:17 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 15 Feb 2004 19:37:17 -0000 Received: (qmail 56709 invoked by uid 500); 15 Feb 2004 19:37:07 -0000 Delivered-To: apmail-xml-xerces-cvs-archive@xml.apache.org Received: (qmail 56681 invoked by uid 500); 15 Feb 2004 19:37:07 -0000 Mailing-List: contact xerces-cvs-help@xml.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: Delivered-To: mailing list xerces-cvs@xml.apache.org Received: (qmail 56668 invoked from network); 15 Feb 2004 19:37:07 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 15 Feb 2004 19:37:07 -0000 Received: (qmail 17612 invoked by uid 1756); 15 Feb 2004 19:37:16 -0000 Date: 15 Feb 2004 19:37:16 -0000 Message-ID: <20040215193716.17611.qmail@minotaur.apache.org> From: amassari@apache.org To: xml-xerces-cvs@apache.org Subject: cvs commit: xml-xerces/c/src/xercesc/util XMLResourceIdentifier.hpp X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N amassari 2004/02/15 11:37:16 Modified: c/src/xercesc/framework/psvi PSVIAttributeList.cpp PSVIAttributeList.hpp c/src/xercesc/framework XMLNotationDecl.hpp c/src/xercesc/util XMLResourceIdentifier.hpp Log: Removed cause for warnings in VC 7.1 Revision Changes Path 1.7 +5 -2 xml-xerces/c/src/xercesc/framework/psvi/PSVIAttributeList.cpp Index: PSVIAttributeList.cpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/PSVIAttributeList.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- PSVIAttributeList.cpp 30 Dec 2003 16:48:16 -0000 1.6 +++ PSVIAttributeList.cpp 15 Feb 2004 19:37:16 -0000 1.7 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.7 2004/02/15 19:37:16 amassari + * Removed cause for warnings in VC 7.1 + * * Revision 1.6 2003/12/30 16:48:16 neilg * some indices in the PSVIAttributeList were 1 off * @@ -95,7 +98,7 @@ * Get the number of attributes whose PSVI contributions * are contained in this list. */ -const unsigned int PSVIAttributeList::getLength() const +unsigned int PSVIAttributeList::getLength() const { return fAttrPos; } 1.7 +5 -2 xml-xerces/c/src/xercesc/framework/psvi/PSVIAttributeList.hpp Index: PSVIAttributeList.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/psvi/PSVIAttributeList.hpp,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- PSVIAttributeList.hpp 20 Dec 2003 06:19:38 -0000 1.6 +++ PSVIAttributeList.hpp 15 Feb 2004 19:37:16 -0000 1.7 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.7 2004/02/15 19:37:16 amassari + * Removed cause for warnings in VC 7.1 + * * Revision 1.6 2003/12/20 06:19:38 neilg * store name/namespace of corresponding attribute in PSVIAttributeList; not all PSVIAttributes have XSAttributeDeclarations * @@ -126,7 +129,7 @@ * Get the number of attributes whose PSVI contributions * are contained in this list. */ - const unsigned int getLength() const; + unsigned int getLength() const; /* * Get the PSVI contribution of attribute at position i 1.12 +7 -2 xml-xerces/c/src/xercesc/framework/XMLNotationDecl.hpp Index: XMLNotationDecl.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/XMLNotationDecl.hpp,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- XMLNotationDecl.hpp 21 Nov 2003 22:34:46 -0000 1.11 +++ XMLNotationDecl.hpp 15 Feb 2004 19:37:16 -0000 1.12 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.12 2004/02/15 19:37:16 amassari + * Removed cause for warnings in VC 7.1 + * * Revision 1.11 2003/11/21 22:34:46 neilg * More schema component model implementation, thanks to David Cargill. * In particular, this cleans up and completes the XSModel, XSNamespaceItem, @@ -166,7 +169,7 @@ const XMLCh* getPublicId() const; const XMLCh* getSystemId() const; const XMLCh* getBaseURI() const; - const unsigned int getNameSpaceId() const; + unsigned int getNameSpaceId() const; MemoryManager* getMemoryManager() const; @@ -249,7 +252,7 @@ return fName; } -inline const unsigned int XMLNotationDecl::getNameSpaceId() const +inline unsigned int XMLNotationDecl::getNameSpaceId() const { return fNameSpaceId; } 1.5 +5 -2 xml-xerces/c/src/xercesc/util/XMLResourceIdentifier.hpp Index: XMLResourceIdentifier.hpp =================================================================== RCS file: /home/cvs/xml-xerces/c/src/xercesc/util/XMLResourceIdentifier.hpp,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- XMLResourceIdentifier.hpp 13 Feb 2004 14:28:30 -0000 1.4 +++ XMLResourceIdentifier.hpp 15 Feb 2004 19:37:16 -0000 1.5 @@ -56,6 +56,9 @@ /* * $Log$ + * Revision 1.5 2004/02/15 19:37:16 amassari + * Removed cause for warnings in VC 7.1 + * * Revision 1.4 2004/02/13 14:28:30 cargilld * Fix for bug 26900 (remove virtual on destructor) * @@ -179,7 +182,7 @@ // ----------------------------------------------------------------------- // Getter methods // ----------------------------------------------------------------------- - const ResourceIdentifierType getResourceIdentifierType() const; + ResourceIdentifierType getResourceIdentifierType() const; const XMLCh* getPublicId() const; const XMLCh* getSystemId() const; const XMLCh* getSchemaLocation() const; @@ -205,7 +208,7 @@ }; -inline const XMLResourceIdentifier::ResourceIdentifierType XMLResourceIdentifier::getResourceIdentifierType() const +inline XMLResourceIdentifier::ResourceIdentifierType XMLResourceIdentifier::getResourceIdentifierType() const { return fResourceIdentifierType; } --------------------------------------------------------------------- To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org For additional commands, e-mail: xerces-cvs-help@xml.apache.org