From e9f6af84a3292ef5d4e575403b8e7ed8a8c49c09 Mon Sep 17 00:00:00 2001 From: Marcus Holland-Moritz Date: Mon, 12 Feb 2024 00:28:28 +0100 Subject: [PATCH] chore(ricepp): clang-format --- ricepp/ricepp.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ricepp/ricepp.cpp b/ricepp/ricepp.cpp index bfd7cf22..6e5d62dc 100644 --- a/ricepp/ricepp.cpp +++ b/ricepp/ricepp.cpp @@ -36,7 +36,8 @@ namespace { detail::cpu_variant get_cpu_variant_init() { #ifndef _WIN32 #if defined(__has_builtin) -#if __has_builtin(__builtin_cpu_supports) && (defined(RICEPP_CPU_BMI2) || defined(RICEPP_CPU_BMI2_AVX512)) +#if __has_builtin(__builtin_cpu_supports) && \ + (defined(RICEPP_CPU_BMI2) || defined(RICEPP_CPU_BMI2_AVX512)) __builtin_cpu_init(); bool const has_avx512vl = __builtin_cpu_supports("avx512vl");