From 880d1b40dd207882630a78bfa4846c31434fde8f Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Thu, 9 May 2024 13:19:09 -0400 Subject: [PATCH] Fix DEAL_II_ARBORX_CXX20_BUG check --- cmake/configure/configure_50_arborx.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/configure/configure_50_arborx.cmake b/cmake/configure/configure_50_arborx.cmake index 1eda0df953..584d51788c 100644 --- a/cmake/configure/configure_50_arborx.cmake +++ b/cmake/configure/configure_50_arborx.cmake @@ -55,7 +55,7 @@ macro(feature_arborx_find_external var) #include int main() { Kokkos::View points(\"points\", 0); - [[maybe_unused]] ArborX::BVH bvh(Kokkos::DefaultExecutionSpace{}, points); + [[maybe_unused]] ArborX::BVH bvh(Kokkos::DefaultHostExecutionSpace{}, points); } " DEAL_II_ARBORX_CXX20_BUG) -- 2.39.5