From a656a723db0f23801b53fc7be883b05164ff1de4 Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Tue, 17 Jun 2025 23:22:32 -0500 Subject: [PATCH] Icons std::find_if cannot be vectorized on Intel macOS 13 --- scwx-qt/source/scwx/qt/gl/draw/icons.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scwx-qt/source/scwx/qt/gl/draw/icons.cpp b/scwx-qt/source/scwx/qt/gl/draw/icons.cpp index d7f6b64c..50e30a82 100644 --- a/scwx-qt/source/scwx/qt/gl/draw/icons.cpp +++ b/scwx-qt/source/scwx/qt/gl/draw/icons.cpp @@ -740,7 +740,7 @@ bool Icons::RunMousePicking( // For each pickable icon auto it = std::find_if( // - std::execution::par_unseq, + std::execution::par, p->currentHoverIcons_.crbegin(), p->currentHoverIcons_.crend(), [&mouseLocalCoords](const auto& icon)