From 37828ff0efd043f00ef4b0bca528563bf11de47a Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 20 Aug 2018 13:58:58 -0400 Subject: [PATCH] Clear conversion wanrings under MSVC --- aria.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aria.cpp b/aria.cpp index 22c65099..6e59d0ff 100644 --- a/aria.cpp +++ b/aria.cpp @@ -40,7 +40,7 @@ using CryptoPP::ARIATab::X2; using CryptoPP::ARIATab::KRK; inline byte ARIA_BRF(const word32 x, const int y) { - return GETBYTE(x, y); + return static_cast(GETBYTE(x, y)); } // Key XOR Layer