Cleared GCC/Clang warning on unknown pragma

This commit is contained in:
Jeffrey Walton 2015-06-09 11:33:32 -04:00
parent 44015c26ba
commit d7399e0fd7

View File

@ -123,7 +123,9 @@ extern const word32 SHA256_K[64] = {
#if defined(CRYPTOPP_X86_ASM_AVAILABLE) || defined(CRYPTOPP_GENERATE_X64_MASM)
#pragma warning(disable: 4731) // frame pointer register 'ebp' modified by inline assembly code
#ifdef _MSC_VER
# pragma warning(disable: 4731) // frame pointer register 'ebp' modified by inline assembly code
#endif
static void CRYPTOPP_FASTCALL X86_SHA256_HashBlocks(word32 *state, const word32 *data, size_t len
#if defined(_MSC_VER) && (_MSC_VER == 1200)