Check that NeedsToAlign is properly sets before checking alignment

This commit is contained in:
Gael Guennebaud 2013-01-24 11:42:04 +01:00
parent 7282a45a0a
commit b74c0a4413

View File

@ -82,6 +82,7 @@ class MyClassA
template<typename T> void check_dynaligned()
{
T* obj = new T;
VERIFY(T::NeedsToAlign==1);
VERIFY(size_t(obj)%ALIGNMENT==0);
delete obj;
}