Clear unused variable warnings on iOS

pull/752/head
Jeffrey Walton 2018-12-01 11:25:36 -05:00
parent a49e2ee2e7
commit 07209942a4
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 2 additions and 2 deletions

View File

@ -670,11 +670,11 @@ CRYPTOPP_INLINE size_t AdvancedProcessBlocks128_6x2_NEON(F2 func2, F6 func6,
#if (CRYPTOPP_LITTLE_ENDIAN)
const uint32x4_t s_one = {0, 0, 0, 1<<24};
const uint32x4_t s_two = {0, 2<<24, 0, 2<<24};
//const uint32x4_t s_two = {0, 2<<24, 0, 2<<24};
#else
// TODO: verify these constants on ARM-BE
const uint32x4_t s_one = {0, 0, 0, 1};
const uint32x4_t s_two = {0, 2, 0, 2};
//const uint32x4_t s_two = {0, 2, 0, 2};
#endif
const size_t blockSize = 16;