Cleared unknown pragma warning with -Wall

pull/2/head
Jeffrey Walton 2015-06-08 02:27:05 -04:00
parent 883c38a314
commit c6fde0fa5a
1 changed files with 3 additions and 1 deletions

View File

@ -80,7 +80,9 @@ void Salsa20_OperateKeystream(byte *output, const byte *input, size_t iterationC
} }
#endif #endif
#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
void Salsa20_Policy::OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount) void Salsa20_Policy::OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount)
{ {