From 86348f85a92838fae393424539b94dd43ae7c806 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Thu, 2 Oct 2025 20:45:47 +0100 Subject: [PATCH] Remove unused CRC64 constants from consts.h --- include/aaruformat/consts.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/aaruformat/consts.h b/include/aaruformat/consts.h index 59809f6..8c958f3 100644 --- a/include/aaruformat/consts.h +++ b/include/aaruformat/consts.h @@ -101,11 +101,6 @@ /** Mask for extracting positional index (lower 24 bits) in Compact Disc suffix/prefix deduplicated block entries. */ #define CD_DFIX_MASK 0x00FFFFFFU -/** ECMA‑182 CRC64 polynomial (reflected form used in standard implementations). */ -#define CRC64_ECMA_POLY 0xC96C5795D7870F42ULL -/** Initial seed value for CRC64 computations (all bits set). */ -#define CRC64_ECMA_SEED 0xFFFFFFFFFFFFFFFFULL - #ifndef _MSC_VER #pragma clang diagnostic pop #endif