From f3ba19b162a89b2081c0598b4a0bf126146e3671 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Thu, 4 Apr 2024 22:05:06 +0200 Subject: Add logging system --- deimos/core/hash.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'deimos/core/hash.h') diff --git a/deimos/core/hash.h b/deimos/core/hash.h index f0eeafd..3198541 100644 --- a/deimos/core/hash.h +++ b/deimos/core/hash.h @@ -43,8 +43,6 @@ constexpr uint64_t MurmurHash3_Fmix64(uint64_t k) constexpr uint128_t MurmurHash3_x64_128(const char* key, uint64_t len) { - if consteval { return { 12, 12 }; } - // NOLINTBEGIN const uint64_t nblocks = len / 16; -- cgit