From 23594861297252f69d71e02160ed2b8a6ddc954b Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 15 Mar 2011 09:53:23 +0100 Subject: disable testing of aligned members when aligned static allocation is not enabled (e.g., for gcc 3.4) --- test/dynalloc.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'test/dynalloc.cpp') diff --git a/test/dynalloc.cpp b/test/dynalloc.cpp index cd0062aac..0b1d6c867 100644 --- a/test/dynalloc.cpp +++ b/test/dynalloc.cpp @@ -120,11 +120,12 @@ void test_dynalloc() } // check static allocation, who knows ? + #if EIGEN_ALIGN_STATICALLY { MyStruct foo0; VERIFY(size_t(foo0.avec.data())%ALIGNMENT==0); MyClassA fooA; VERIFY(size_t(fooA.avec.data())%ALIGNMENT==0); } - + // dynamic allocation, single object for (int i=0; i