From c71bdf13c4c87f4c15d0678c85c5a9043b247fb3 Mon Sep 17 00:00:00 2001 From: Weaselbot Date: Fri, 26 Jun 2026 11:09:08 -0400 Subject: [PATCH] Align AArch64 histogram parameter formatting with project style Minor whitespace fix so the NEON function signature matches the existing AVX function's indentation. --- src/metric.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/metric.cpp b/src/metric.cpp index f36e8e1..3a870c9 100644 --- a/src/metric.cpp +++ b/src/metric.cpp @@ -1448,8 +1448,8 @@ update_histogram_buckets_simd(std::span thresholds, #elif defined(__aarch64__) static void update_histogram_buckets_simd(std::span thresholds, - std::span counts, double x, - size_t start_idx) { + std::span counts, double x, + size_t start_idx) { const size_t size = thresholds.size(); size_t i = start_idx;