From e2ae3bdd940b4c9778adc4a300514104fac44aa1 Mon Sep 17 00:00:00 2001 From: Jack O'Connor Date: Mon, 15 Feb 2021 14:20:49 -0500 Subject: [PATCH] delete an unused constant Fixes https://github.com/BLAKE3-team/BLAKE3/issues/152. --- c/blake3.h | 1 - 1 file changed, 1 deletion(-) diff --git a/c/blake3.h b/c/blake3.h index 94ebc5f..0fd31da 100644 --- a/c/blake3.h +++ b/c/blake3.h @@ -14,7 +14,6 @@ extern "C" { #define BLAKE3_BLOCK_LEN 64 #define BLAKE3_CHUNK_LEN 1024 #define BLAKE3_MAX_DEPTH 54 -#define BLAKE3_MAX_SIMD_DEGREE 16 // This struct is a private implementation detail. It has to be here because // it's part of blake3_hasher below.