From b51ef97c7167a8268c9b53cd0230f79c79775d0c Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Thu, 10 Oct 2024 15:56:16 -0700 Subject: [PATCH] Fix USE_SIMD_FALLBACK build --- ConflictSet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConflictSet.cpp b/ConflictSet.cpp index 6f4a368..12555b0 100644 --- a/ConflictSet.cpp +++ b/ConflictSet.cpp @@ -2430,7 +2430,7 @@ bool checkMaxBetweenExclusiveImpl(Node *n, int begin, int end, if (!mask) { return true; } - auto *child = self->children[std::countr_zero(mask)]; + Node *child = self->children[std::countr_zero(mask)]; const bool firstRangeOk = !child->entryPresent || child->entry.rangeVersion <= readVersion; uint32_t compared = 0;