MIPSpro 7.3.1 workaround, as suggested by David Abrahams (thanks!)

[SVN r21275]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2003-12-15 17:20:28 +00:00
parent b55dc5cc24
commit 2bce5b2c26

View File

@@ -100,9 +100,9 @@ struct lower_alignment_helper
template <std::size_t target, class TestType>
struct lower_alignment_helper<false,target,TestType>
: mpl::if_c<(alignment_of<TestType>::value == target), TestType, char>
{
enum { value = (alignment_of<TestType>::value == target) };
typedef typename mpl::if_c<value, TestType, char>::type type;
};
#endif