Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 61351 invoked from network); 20 May 2006 14:25:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 20 May 2006 14:25:25 -0000 Received: (qmail 46241 invoked by uid 500); 20 May 2006 14:25:24 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 46158 invoked by uid 500); 20 May 2006 14:25:24 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 46147 invoked by uid 99); 20 May 2006 14:25:23 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 May 2006 07:25:23 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 20 May 2006 07:25:23 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 02AFB1A983A; Sat, 20 May 2006 07:25:03 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r408003 - /webservices/axis/trunk/c/include/axis/AxisException.hpp Date: Sat, 20 May 2006 14:25:02 -0000 To: axis-cvs@ws.apache.org From: nadiramra@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060520142503.02AFB1A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: nadiramra Date: Sat May 20 07:25:02 2006 New Revision: 408003 URL: http://svn.apache.org/viewvc?rev=408003&view=rev Log: remove const from retyrn datatype of const int. Modified: webservices/axis/trunk/c/include/axis/AxisException.hpp Modified: webservices/axis/trunk/c/include/axis/AxisException.hpp URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/include/axis/AxisException.hpp?rev=408003&r1=408002&r2=408003&view=diff ============================================================================== --- webservices/axis/trunk/c/include/axis/AxisException.hpp (original) +++ webservices/axis/trunk/c/include/axis/AxisException.hpp Sat May 20 07:25:02 2006 @@ -465,7 +465,7 @@ * * @return Exception code */ - virtual const int getExceptionCode() const { return m_iExceptionCode; } + virtual int getExceptionCode() const { return m_iExceptionCode; } /** * This can be called to set the exception code --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org