From dbf2936b4af330589aee9782e435ad5dd908a047 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 9 Jun 2024 09:35:09 +0200 Subject: cmake, hash: enable avx2 in debug mode for testing --- hash/xxhash.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'hash') diff --git a/hash/xxhash.cpp b/hash/xxhash.cpp index c720465e..c5ece41b 100644 --- a/hash/xxhash.cpp +++ b/hash/xxhash.cpp @@ -19,7 +19,6 @@ CORRADE_ALWAYS_INLINE size_t do_xxhash(const void* __restrict buf, size_t size) { #ifdef __AVX2__ return XXH3_64bits(buf, size); -#error "foo avx" #elif __SSE2__ return (size_t)XXH3_64bits(buf, size); #else -- cgit v1.2.3