sha2: Suppress -Wcast-align warning from Clang
The code does contain a cast that increases alignment but only for pointers into structures known to be sufficiently aligned.
This commit is contained in:
parent
24b1feb5ca
commit
0a6705cbda
|
@ -106,6 +106,9 @@ typedef cm_sha2_uint64_t sha_word64; /* Exactly 8 bytes */
|
|||
#if defined(__BORLANDC__)
|
||||
# pragma warn -8004 /* variable assigned value that is never used */
|
||||
#endif
|
||||
#if defined(__clang__)
|
||||
# pragma clang diagnostic ignored "-Wcast-align"
|
||||
#endif
|
||||
|
||||
/*** ENDIAN REVERSAL MACROS *******************************************/
|
||||
#if BYTE_ORDER == LITTLE_ENDIAN
|
||||
|
|
Loading…
Reference in New Issue