Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 16556 invoked from network); 19 May 2006 00:12:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 19 May 2006 00:12:49 -0000 Received: (qmail 45940 invoked by uid 500); 19 May 2006 00:12:49 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 45924 invoked by uid 500); 19 May 2006 00:12:48 -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 45913 invoked by uid 99); 19 May 2006 00:12:48 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 18 May 2006 17:12:48 -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; Thu, 18 May 2006 17:12:48 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id C4CBC1A9835; Thu, 18 May 2006 17:12:27 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r407668 - /incubator/stdcxx/trunk/tests/include/21.strings.h Date: Fri, 19 May 2006 00:12:27 -0000 To: stdcxx-commits@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060519001227.C4CBC1A9835@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: sebor Date: Thu May 18 17:12:27 2006 New Revision: 407668 URL: http://svn.apache.org/viewvc?rev=407668&view=rev Log: 2006-05-18 Martin Sebor * 21.strings.h (DEFINE_STRING_TEST_DISPATCH): Used fully qualified StringMembers types Function and TestCase instead of relying on convenience typedefs defined in each test. Modified: incubator/stdcxx/trunk/tests/include/21.strings.h Modified: incubator/stdcxx/trunk/tests/include/21.strings.h URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/include/21.strings.h?rev=407668&r1=407667&r2=407668&view=diff ============================================================================== --- incubator/stdcxx/trunk/tests/include/21.strings.h (original) +++ incubator/stdcxx/trunk/tests/include/21.strings.h Thu May 18 17:12:27 2006 @@ -569,7 +569,8 @@ } \ \ static void \ - fname (const MemFun &memfun, const TestCase &tcase) { \ + fname (const StringMembers::Function &memfun, \ + const StringMembers::TestCase &tcase) { \ /* disable tests exercising user-define allocator */ \ rw_disable_user_allocator = 1; \ TEST_DISPATCH (std::allocator, fname, memfun, tcase); \ @@ -577,7 +578,8 @@ #define DEFINE_STRING_TEST_DISPATCH(fname) \ static void \ - fname (const MemFun &memfun, const TestCase &tcase) { \ + fname (const StringMembers::Function &memfun, \ + const StringMembers::TestCase &tcase) { \ if (StringMembers::DefaultAllocator == memfun.alloc_id_) { \ TEST_DISPATCH (std::allocator, fname, memfun, tcase); \ } \