summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--misc.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/misc.h b/misc.h
index e5563b0b..12dad4c6 100644
--- a/misc.h
+++ b/misc.h
@@ -1189,11 +1189,6 @@ inline unsigned int GetAlignmentOf()
#elif CRYPTOPP_BOOL_SLOW_WORD64
return UnsignedMin(4U, sizeof(T));
#else
-# if __BIGGEST_ALIGNMENT__
- if (__BIGGEST_ALIGNMENT__ < sizeof(T))
- return __BIGGEST_ALIGNMENT__;
- else
-# endif
return sizeof(T);
#endif
}