Return-Path: Delivered-To: apmail-stdcxx-commits-archive@www.apache.org Received: (qmail 79100 invoked from network); 16 Jun 2008 19:50:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 16 Jun 2008 19:50:50 -0000 Received: (qmail 60848 invoked by uid 500); 16 Jun 2008 19:50:52 -0000 Delivered-To: apmail-stdcxx-commits-archive@stdcxx.apache.org Received: (qmail 60836 invoked by uid 500); 16 Jun 2008 19:50:52 -0000 Mailing-List: contact commits-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list commits@stdcxx.apache.org Received: (qmail 60827 invoked by uid 99); 16 Jun 2008 19:50:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 16 Jun 2008 12:50:52 -0700 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; Mon, 16 Jun 2008 19:50:11 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D46C4238898F; Mon, 16 Jun 2008 12:50:29 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r668277 - /stdcxx/branches/4.3.x/include/rw/_meta_other.h Date: Mon, 16 Jun 2008 19:50:29 -0000 To: commits@stdcxx.apache.org From: vitek@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080616195029.D46C4238898F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: vitek Date: Mon Jun 16 12:50:29 2008 New Revision: 668277 URL: http://svn.apache.org/viewvc?rev=668277&view=rev Log: 2008-06-16 Travis Vitek STDCXX-926 * include/rw/_meta_other.h [!_RWSTD_NO_VARIADIC_TEMPLATES]: Fix __rw_aligned_union implementation. Modified: stdcxx/branches/4.3.x/include/rw/_meta_other.h Modified: stdcxx/branches/4.3.x/include/rw/_meta_other.h URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/include/rw/_meta_other.h?rev=668277&r1=668276&r2=668277&view=diff ============================================================================== --- stdcxx/branches/4.3.x/include/rw/_meta_other.h (original) +++ stdcxx/branches/4.3.x/include/rw/_meta_other.h Mon Jun 16 12:50:29 2008 @@ -91,7 +91,7 @@ { union { unsigned char __pad [_Len]; - typename __rw_aligned_union<_Len, Types...>::_C_type __align; + typename __rw_aligned_union_impl<_Len, Types...>::_C_type __align; } _C_type; };