Merged typename fix from trunk to branch.

[SVN r17913]
This commit is contained in:
Markus Schöpflin
2003-03-14 13:00:11 +00:00
parent 650b4a89b3
commit 63a928a510

View File

@ -57,7 +57,8 @@ namespace boost
union dummy_u
{
char data[ sizeof(T) ];
type_with_alignment< ::boost::alignment_of<T>::value >::type aligner_;
BOOST_DEDUCED_TYPENAME type_with_alignment<
::boost::alignment_of<T>::value >::type aligner_;
} dummy_ ;
public: