Added BOOST_DEDUCED_TYPENAME to fix compilation failures.

[SVN r17912]
This commit is contained in:
Markus Schöpflin
2003-03-14 12:56:01 +00:00
parent 1e7b26738e
commit 0267424bfe

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: