diff --git a/src/arch/x86/AVX2.cpp b/src/arch/x86/AVX2.cpp index f32048a..ab7f03e 100644 --- a/src/arch/x86/AVX2.cpp +++ b/src/arch/x86/AVX2.cpp @@ -14,7 +14,7 @@ namespace hat::detail { const auto firstByte = _mm256_set1_epi8(static_cast(*signature[0])); std::byte byteBuffer[32]{}; // The remaining signature bytes - std::byte maskBuffer[32]{}; // A bitmask for the signature bytes we care about + std::byte maskBuffer[32]{}; // A bitmask for the signature bytes we care about for (size_t i = 1; i < signature.size(); i++) { auto e = signature[i]; if (e.has_value()) { diff --git a/src/arch/x86/AVX512.cpp b/src/arch/x86/AVX512.cpp index 9b2e171..47e559e 100644 --- a/src/arch/x86/AVX512.cpp +++ b/src/arch/x86/AVX512.cpp @@ -1,4 +1,5 @@ #include + #ifdef LIBHAT_X86 #include