From 86927f33aeac0273794c4f4ec2de20362d64a8b8 Mon Sep 17 00:00:00 2001 From: Lee *!* Clagett Date: Thu, 4 Dec 2025 16:13:57 -0500 Subject: [PATCH] Remove invalid constexpr --- src/crypto/hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/hash.h b/src/crypto/hash.h index f96e75920..a0dd92b3d 100644 --- a/src/crypto/hash.h +++ b/src/crypto/hash.h @@ -71,7 +71,7 @@ namespace crypto { return h; } - static constexpr void cn_variant1_check(const std::size_t length, const int variant) + static void cn_variant1_check(const std::size_t length, const int variant) { // see VARIANT1_CHECK in slow-hash.c if (variant == 1 && length < 43)