Skip to content

Commit

Permalink
Remove unnecessary qualifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Oct 21, 2021
1 parent e7834dd commit 92b329b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/hash/md5_hash.cu
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ namespace detail {

namespace {

static const __device__ __constant__ uint32_t md5_shift_constants[16] = {
const __constant__ uint32_t md5_shift_constants[16] = {
7, 12, 17, 22, 5, 9, 14, 20, 4, 11, 16, 23, 6, 10, 15, 21};

static const __device__ __constant__ uint32_t md5_hash_constants[64] = {
const __constant__ uint32_t md5_hash_constants[64] = {
0xd76aa478, 0xe8c7b756, 0x242070db, 0xc1bdceee, 0xf57c0faf, 0x4787c62a, 0xa8304613, 0xfd469501,
0x698098d8, 0x8b44f7af, 0xffff5bb1, 0x895cd7be, 0x6b901122, 0xfd987193, 0xa679438e, 0x49b40821,
0xf61e2562, 0xc040b340, 0x265e5a51, 0xe9b6c7aa, 0xd62f105d, 0x02441453, 0xd8a1e681, 0xe7d3fbc8,
Expand Down

0 comments on commit 92b329b

Please sign in to comment.