summaryrefslogtreecommitdiff
path: root/aria_simd.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-01-01 17:56:26 -0500
committerJeffrey Walton <noloader@gmail.com>2019-01-01 17:56:26 -0500
commite5085684efe71cb48ccb4385f40cd3cc62d5f66c (patch)
tree747abe9fc4fa6a66650ea09322bfcef4c7dab77e /aria_simd.cpp
parent148a5e917bc277572637c8b851b9d4f1417946f7 (diff)
downloadcryptopp-git-e5085684efe71cb48ccb4385f40cd3cc62d5f66c.tar.gz
Fix missing SunCC Allocator::max_size(size_type) member function (GH #770)
Diffstat (limited to 'aria_simd.cpp')
-rw-r--r--aria_simd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/aria_simd.cpp b/aria_simd.cpp
index 536cfb84..6222439b 100644
--- a/aria_simd.cpp
+++ b/aria_simd.cpp
@@ -47,7 +47,7 @@ using CryptoPP::byte;
using CryptoPP::word32;
inline byte ARIA_BRF(const word32 x, const int y) {
- return GETBYTE(x, y);
+ return static_cast<byte>(GETBYTE(x, y));
}
ANONYMOUS_NAMESPACE_END