Skip to content

Commit

Permalink
duh
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin committed Sep 13, 2024
1 parent 4018804 commit c6faf23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/checksum/CRC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ namespace Aws
{
namespace Checksum
{
uint32_t ComputeCRC32(const ByteCursor &input, uint32_t previousCRC32)
uint32_t ComputeCRC32(const ByteCursor &input, uint32_t previousCRC32) noexcept
{
return aws_checksums_crc32(input.ptr, input.len, previousCRC32);
}

uint32_t ComputeCRC32C(const ByteCursor &input, uint32_t previousCRC32C)
uint32_t ComputeCRC32C(const ByteCursor &input, uint32_t previousCRC32C) noexcept
{
return aws_checksums_crc32c(input.ptr, input.len, previousCRC32C);
}

uint64_t ComputeCRC64NVME(const ByteCursor &input, uint64_t previousCRC64NVME)
uint64_t ComputeCRC64NVME(const ByteCursor &input, uint64_t previousCRC64NVME) noexcept
{
return aws_checksums_crc64nvme(input.ptr, input.len, previousCRC64NVME);
}
Expand Down

0 comments on commit c6faf23

Please sign in to comment.