Author: elemings
Date: Fri Jun 20 12:52:42 2008
New Revision: 670047
URL: http://svn.apache.org/viewvc?rev=670047&view=rev
Log:
2008-06-20 Eric Lemings <[EMAIL PROTECTED]>
STDCXX-926
* include/rw/_meta_other.h: Add parentheses around template
parameters used as sizeof() arguments to make benefit for
glorious compiler of gcc 4.3.
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=670047&r1=670046&r2=670047&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/include/rw/_meta_other.h (original)
+++ stdcxx/branches/4.3.x/include/rw/_meta_other.h Fri Jun 20 12:52:42 2008
@@ -179,7 +179,7 @@
__rw_biggest<_Types...>::type _TypeU;
typedef typename
- __rw_conditional<sizeof _TypeT < sizeof _TypeU,
+ __rw_conditional<sizeof (_TypeT) < sizeof (_TypeU),
_TypeU, _TypeT>::type type;
};