From b1e43f2e581606c78a42c37e5c31c6fe33d345f7 Mon Sep 17 00:00:00 2001 From: Brady Date: Sun, 5 Feb 2023 13:37:50 -0600 Subject: [PATCH] Formatting adjustments --- src/arch/x86/AVX2.cpp | 2 +- src/arch/x86/AVX512.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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