Remove __IBM_ATTRIBUTES

I believe this is C++ attributes, and not GCC attributes
This commit is contained in:
Jeffrey Walton 2018-11-22 20:47:35 -05:00
parent 3ba4dc6052
commit 3efc7752e4
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -361,7 +361,7 @@ NAMESPACE_END
#define CRYPTOPP_ALIGN_DATA(x) __declspec(align(x))
#elif defined(__GNUC__) || (__SUNPRO_CC >= 0x5100)
#define CRYPTOPP_ALIGN_DATA(x) __attribute__((aligned(x)))
#elif defined(__xlc__) || defined(__xlC__) || defined(__IBM_ATTRIBUTES)
#elif defined(__xlc__) || defined(__xlC__)
#define CRYPTOPP_ALIGN_DATA(x) __attribute__((aligned(x)))
#else
#define CRYPTOPP_ALIGN_DATA(x)