diff --git a/ConflictSet.cpp b/ConflictSet.cpp index d2bdd1f..ff4c8fa 100644 --- a/ConflictSet.cpp +++ b/ConflictSet.cpp @@ -39,9 +39,9 @@ limitations under the License. #endif #if defined(__has_feature) -# if __has_feature(thread_sanitizer) +#if __has_feature(thread_sanitizer) #define __SANITIZE_THREAD__ -# endif +#endif #endif #include @@ -1776,8 +1776,8 @@ downLeftSpine: #ifndef __SANITIZE_THREAD__ __attribute__((target("default"))) #endif -uint32_t compare16_32bit(const InternalVersionT *vs, - InternalVersionT rv) { +uint32_t +compare16_32bit(const InternalVersionT *vs, InternalVersionT rv) { uint32_t compared = 0; __m128i w[4]; memcpy(w, vs, sizeof(w)); @@ -1794,8 +1794,8 @@ uint32_t compare16_32bit(const InternalVersionT *vs, } #ifndef __SANITIZE_THREAD__ -__attribute__((target("avx512f"))) uint32_t compare16_32bit(const InternalVersionT *vs, - InternalVersionT rv) { +__attribute__((target("avx512f"))) uint32_t +compare16_32bit(const InternalVersionT *vs, InternalVersionT rv) { __m512i w; memcpy(&w, vs, sizeof(w)); uint32_t r;