summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-11-22 20:47:35 -0500
committerJeffrey Walton <noloader@gmail.com>2018-11-22 20:47:35 -0500
commit3efc7752e408d1cd48d4eada32d75b9f464ae635 (patch)
treed04908e17e96abaccfc85adcd66eb1e38ff6ad18 /config.h
parent3ba4dc60521c916996cc4a99cfd27cbc38c62897 (diff)
downloadcryptopp-git-3efc7752e408d1cd48d4eada32d75b9f464ae635.tar.gz
Remove __IBM_ATTRIBUTES
I believe this is C++ attributes, and not GCC attributes
Diffstat (limited to 'config.h')
-rw-r--r--config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.h b/config.h
index 9b6d2472..b1505a8c 100644
--- a/config.h
+++ b/config.h
@@ -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)