Align AArch64 histogram parameter formatting with project style

Minor whitespace fix so the NEON function signature matches the existing
AVX function's indentation.
This commit is contained in:
2026-06-26 11:09:08 -04:00
parent a0d64afd6f
commit c71bdf13c4
+2 -2
View File
@@ -1448,8 +1448,8 @@ update_histogram_buckets_simd(std::span<const double> thresholds,
#elif defined(__aarch64__)
static void
update_histogram_buckets_simd(std::span<const double> thresholds,
std::span<uint64_t> counts, double x,
size_t start_idx) {
std::span<uint64_t> counts, double x,
size_t start_idx) {
const size_t size = thresholds.size();
size_t i = start_idx;