Skip to content

Commit

Permalink
Fix CUDA warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mborland committed Oct 25, 2024
1 parent 275c456 commit cbe580a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/crypt/hash/detail/sha512_base.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ auto sha512_base<digest_size>::process_message_block() noexcept -> void
{
#ifdef BOOST_CRYPT_HAS_CUDA

BOOST_CRYPT_INLINE_CONSTEXPR boost::crypt::array<boost::crypt::uint64_t, 80U> sha512_k = {
constexpr boost::crypt::array<boost::crypt::uint64_t, 80U> sha512_k = {
0x428A2F98D728AE22ULL, 0x7137449123EF65CDULL, 0xB5C0FBCFEC4D3B2FULL,
0xE9B5DBA58189DBBCULL, 0x3956C25BF348B538ULL, 0x59F111F1B605D019ULL,
0x923F82A4AF194F9BULL, 0xAB1C5ED5DA6D8118ULL, 0xD807AA98A3030242ULL,
Expand Down

0 comments on commit cbe580a

Please sign in to comment.