From 8bcbd2729388edc63c82d77d314b583af1447c49 Mon Sep 17 00:00:00 2001 From: untodesu Date: Sun, 14 Sep 2025 19:16:44 +0500 Subject: Cleanup math with qfengine ports again --- core/math/crc64.hh | 1 + 1 file changed, 1 insertion(+) (limited to 'core/math/crc64.hh') diff --git a/core/math/crc64.hh b/core/math/crc64.hh index f68c951..5a6fea4 100644 --- a/core/math/crc64.hh +++ b/core/math/crc64.hh @@ -5,4 +5,5 @@ namespace math std::uint64_t crc64(const void* buffer, std::size_t size, std::uint64_t combine = UINT64_C(0)); std::uint64_t crc64(const std::vector& buffer, std::uint64_t combine = UINT64_C(0)); std::uint64_t crc64(const std::string& buffer, std::uint64_t combine = UINT64_C(0)); +std::uint64_t crc64(std::string_view buffer, std::uint64_t combine = UINT64_C(0)); } // namespace math -- cgit