summaryrefslogtreecommitdiffhomepage
path: root/hash/xxhash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'hash/xxhash.cpp')
-rw-r--r--hash/xxhash.cpp1
1 files changed, 0 insertions, 1 deletions
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