From 07209942a4a2a716458550e6d0a12b043c1786cd Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 1 Dec 2018 11:25:36 -0500 Subject: [PATCH] Clear unused variable warnings on iOS --- adv_simd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adv_simd.h b/adv_simd.h index f84e60d9..ce468012 100644 --- a/adv_simd.h +++ b/adv_simd.h @@ -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;