Merge branch 'CGAL-fix_sse2_mingw-lrineau' into releases/CGAL-4.5-branch

Fix the SSE macros when MinGW is used.

Tested in CGAL-4.5.1-Ic-167.
Approved by the Release Manager.
This commit is contained in:
Laurent Rineau 2014-11-28 12:01:50 +01:00
commit 044660eb48
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
#include <emmintrin.h>
#if defined ( _MSC_VER )
#if defined ( _WIN32 )
#define CGAL_ALIGN_16 __declspec(align(16))
#elif defined( __GNU__ )
#define CGAL_ALIGN_16 __attribute__((aligned(16)))