Support MINGW64 in sse2.h

Trivial fix for master
This commit is contained in:
Laurent Rineau 2015-01-26 17:35:05 +01:00
parent 8637097561
commit 90543eefab
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@
#if defined ( _WIN32 ) #if defined ( _WIN32 )
#define CGAL_ALIGN_16 __declspec(align(16)) #define CGAL_ALIGN_16 __declspec(align(16))
#elif defined( __GNU__ ) #elif defined( __GNU__ ) || defined(__MINGW64__)
#define CGAL_ALIGN_16 __attribute__((aligned(16))) #define CGAL_ALIGN_16 __attribute__((aligned(16)))
#endif #endif