Correct ALIGN preprocessor stuff for __GNU_C__

This commit is contained in:
riccardom 2010-12-31 18:01:32 +00:00
parent e6ad3b5db5
commit bb0ceffcd5
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@
#if defined(_MSC_VER) || defined(__INTEL_COMPILER)
#define ALIGN(X) __declspec(align(X))
#elif __GNUC__
#elif defined(__GNUC__)
#define ALIGN(X) __attribute__ ((aligned (X)))
#else
#define ALIGN(X)