mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2025-02-21 05:41:12 +00:00
Cleared GCC/Clang warning on unknown pragma
This commit is contained in:
parent
44015c26ba
commit
d7399e0fd7
4
sha.cpp
4
sha.cpp
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user