Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 94175 invoked from network); 8 Jun 2010 20:39:34 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 8 Jun 2010 20:39:34 -0000 Received: (qmail 7426 invoked by uid 500); 8 Jun 2010 20:39:34 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 7388 invoked by uid 500); 8 Jun 2010 20:39:33 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 7381 invoked by uid 99); 8 Jun 2010 20:39:33 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Jun 2010 20:39:33 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 Jun 2010 20:39:31 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 92B5223889B3; Tue, 8 Jun 2010 20:39:10 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r952809 - in /activemq/activemq-cpp/trunk/activemq-cpp/src/main: activemq/core/ActiveMQTransactionContext.cpp decaf/net/SocketImpl.cpp Date: Tue, 08 Jun 2010 20:39:10 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100608203910.92B5223889B3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Tue Jun 8 20:39:10 2010 New Revision: 952809 URL: http://svn.apache.org/viewvc?rev=952809&view=rev Log: Fix a couple compiler warnings Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/core/ActiveMQTransactionContext.cpp activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/net/SocketImpl.cpp Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/core/ActiveMQTransactionContext.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/core/ActiveMQTransactionContext.cpp?rev=952809&r1=952808&r2=952809&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/core/ActiveMQTransactionContext.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/core/ActiveMQTransactionContext.cpp Tue Jun 8 20:39:10 2010 @@ -39,7 +39,7 @@ using namespace decaf::util::concurrent; //////////////////////////////////////////////////////////////////////////////// ActiveMQTransactionContext::ActiveMQTransactionContext( ActiveMQSession* session, - const Properties& properties ) { + const Properties& properties AMQCPP_UNUSED) { try { if( session == NULL ) { Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/net/SocketImpl.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/net/SocketImpl.cpp?rev=952809&r1=952808&r2=952809&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/net/SocketImpl.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/net/SocketImpl.cpp Tue Jun 8 20:39:10 2010 @@ -41,7 +41,7 @@ std::string SocketImpl::toString() const } //////////////////////////////////////////////////////////////////////////////// -void SocketImpl::sendUrgentData( int data ) throw( decaf::io::IOException ) { +void SocketImpl::sendUrgentData( int data DECAF_UNUSED ) throw( decaf::io::IOException ) { throw decaf::io::IOException( __FILE__, __LINE__, "Urgent Data not supported by this implementation." );