You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by vi...@apache.org on 2008/06/16 21:50:29 UTC

svn commit: r668277 - /stdcxx/branches/4.3.x/include/rw/_meta_other.h

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  <vi...@roguewave.com>

	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;
 };