Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 69587 invoked from network); 24 Oct 2007 15:39:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Oct 2007 15:39:31 -0000 Received: (qmail 93920 invoked by uid 500); 24 Oct 2007 15:39:18 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 93909 invoked by uid 500); 24 Oct 2007 15:39:18 -0000 Mailing-List: contact stdcxx-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-commits@incubator.apache.org Received: (qmail 93892 invoked by uid 99); 24 Oct 2007 15:39:18 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Oct 2007 08:39:18 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Oct 2007 15:39:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 516CC1A983A; Wed, 24 Oct 2007 08:38:40 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r587909 - /incubator/stdcxx/branches/4.2.x/tests/utilities/20.temp.buffer.mt.cpp Date: Wed, 24 Oct 2007 15:38:40 -0000 To: stdcxx-commits@incubator.apache.org From: faridz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071024153840.516CC1A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: faridz Date: Wed Oct 24 08:38:39 2007 New Revision: 587909 URL: http://svn.apache.org/viewvc?rev=587909&view=rev Log: 2007-10-24 Farid Zaripov * 20.temp.buffer.mt.cpp (thr_func): Remove setting default zero values for buffers since std::pair default ctor already do that. Modified: incubator/stdcxx/branches/4.2.x/tests/utilities/20.temp.buffer.mt.cpp Modified: incubator/stdcxx/branches/4.2.x/tests/utilities/20.temp.buffer.mt.cpp URL: http://svn.apache.org/viewvc/incubator/stdcxx/branches/4.2.x/tests/utilities/20.temp.buffer.mt.cpp?rev=587909&r1=587908&r2=587909&view=diff ============================================================================== --- incubator/stdcxx/branches/4.2.x/tests/utilities/20.temp.buffer.mt.cpp (original) +++ incubator/stdcxx/branches/4.2.x/tests/utilities/20.temp.buffer.mt.cpp Wed Oct 24 08:38:39 2007 @@ -138,10 +138,10 @@ #endif // _RWSTD_INT64_T - std::pair<_RWSTD_INT8_T*, std::ptrdiff_t> buf0 (0, 0); - std::pair<_RWSTD_INT16_T*, std::ptrdiff_t> buf1 (0, 0); - std::pair<_RWSTD_INT32_T*, std::ptrdiff_t> buf2 (0, 0); - std::pair buf3 (0, 0); + std::pair<_RWSTD_INT8_T*, std::ptrdiff_t> buf0; + std::pair<_RWSTD_INT16_T*, std::ptrdiff_t> buf1; + std::pair<_RWSTD_INT32_T*, std::ptrdiff_t> buf2; + std::pair buf3; for (unsigned i = 0; i != rw_opt_nloops; ++i) {