You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by fa...@apache.org on 2008/11/20 01:13:39 UTC

svn commit: r719138 - /stdcxx/trunk/include/rw/_config-msvc.h

Author: faridz
Date: Wed Nov 19 16:13:39 2008
New Revision: 719138

URL: http://svn.apache.org/viewvc?rev=719138&view=rev
Log:
2008-11-20  Farid Zaripov  <fa...@apache.org>

	* include/rw/_config-msvc: Fixed typo in _RWSTD_TT_ALIGNED_POD()
	definition.

Modified:
    stdcxx/trunk/include/rw/_config-msvc.h

Modified: stdcxx/trunk/include/rw/_config-msvc.h
URL: http://svn.apache.org/viewvc/stdcxx/trunk/include/rw/_config-msvc.h?rev=719138&r1=719137&r2=719138&view=diff
==============================================================================
--- stdcxx/trunk/include/rw/_config-msvc.h (original)
+++ stdcxx/trunk/include/rw/_config-msvc.h Wed Nov 19 16:13:39 2008
@@ -112,7 +112,7 @@
 
 #  define _RWSTD_TT_ALIGN_OF(T)            __alignof(T)
 #  define _RWSTD_TT_ALIGNED_POD(N)         \
-      struct {__declspec(align(Align)) unsigned char _C_align; }
+      struct {__declspec(align(N)) unsigned char _C_align; }
 
 #  define _RWSTD_TT_MAX_ALIGNMENT          8192
 #endif // _MSC_FULL_VER >= 140050215