Return-Path: X-Original-To: apmail-qpid-commits-archive@www.apache.org Delivered-To: apmail-qpid-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 88775D4A9 for ; Wed, 1 Aug 2012 22:25:02 +0000 (UTC) Received: (qmail 25072 invoked by uid 500); 1 Aug 2012 22:25:02 -0000 Delivered-To: apmail-qpid-commits-archive@qpid.apache.org Received: (qmail 25050 invoked by uid 500); 1 Aug 2012 22:25:02 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 25043 invoked by uid 99); 1 Aug 2012 22:25:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Aug 2012 22:25:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Wed, 01 Aug 2012 22:25:00 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 2462B23889B8 for ; Wed, 1 Aug 2012 22:24:16 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1368300 - /qpid/trunk/qpid/cpp/src/qpid/client/windows/SslConnector.cpp Date: Wed, 01 Aug 2012 22:24:16 -0000 To: commits@qpid.apache.org From: astitcher@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120801222416.2462B23889B8@eris.apache.org> Author: astitcher Date: Wed Aug 1 22:24:15 2012 New Revision: 1368300 URL: http://svn.apache.org/viewvc?rev=1368300&view=rev Log: NO-JIRA: Remove unused return parameter part II - Windows Modified: qpid/trunk/qpid/cpp/src/qpid/client/windows/SslConnector.cpp Modified: qpid/trunk/qpid/cpp/src/qpid/client/windows/SslConnector.cpp URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/cpp/src/qpid/client/windows/SslConnector.cpp?rev=1368300&r1=1368299&r2=1368300&view=diff ============================================================================== --- qpid/trunk/qpid/cpp/src/qpid/client/windows/SslConnector.cpp (original) +++ qpid/trunk/qpid/cpp/src/qpid/client/windows/SslConnector.cpp Wed Aug 1 22:24:15 2012 @@ -68,7 +68,7 @@ class SslConnector : public qpid::client // A number of AsynchIO callbacks go right through to TCPConnector, but // we can't boost::bind to a protected ancestor, so these methods redirect // to those TCPConnector methods. - bool redirectReadbuff(qpid::sys::AsynchIO&, qpid::sys::AsynchIOBufferBase*); + void redirectReadbuff(qpid::sys::AsynchIO&, qpid::sys::AsynchIOBufferBase*); void redirectWritebuff(qpid::sys::AsynchIO&); void redirectEof(qpid::sys::AsynchIO&); @@ -111,9 +111,9 @@ void SslConnector::negotiationDone(SECUR connectFailed(QPID_MSG(qpid::sys::strError(status))); } -bool SslConnector::redirectReadbuff(qpid::sys::AsynchIO& a, +void SslConnector::redirectReadbuff(qpid::sys::AsynchIO& a, qpid::sys::AsynchIOBufferBase* b) { - return readbuff(a, b); + readbuff(a, b); } void SslConnector::redirectWritebuff(qpid::sys::AsynchIO& a) { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org