From 7b962ce2943640fb0b0d4956cd0efed40adf634d Mon Sep 17 00:00:00 2001 From: Christian Trott Date: Wed, 19 Jun 2024 09:59:38 -0600 Subject: [PATCH] Use correct includes for spaceawareaccessor --- core/src/View/MDSpan/Kokkos_MDSpan_Accessor.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/View/MDSpan/Kokkos_MDSpan_Accessor.hpp b/core/src/View/MDSpan/Kokkos_MDSpan_Accessor.hpp index 57513b0364a..431f6c0652d 100644 --- a/core/src/View/MDSpan/Kokkos_MDSpan_Accessor.hpp +++ b/core/src/View/MDSpan/Kokkos_MDSpan_Accessor.hpp @@ -24,11 +24,11 @@ static_assert(false, #include #include -#include +#include namespace Kokkos { -// For now use the accessors in IMPL namespace, as an +// For now use the accessors in Impl namespace, as an // implementation detail for rebasing View on mdspan namespace Impl { @@ -43,7 +43,7 @@ struct SpaceAwareAccessor { using memory_space = MemorySpace; - static_assert(is_memory_space::value); + static_assert(is_memory_space_v); KOKKOS_DEFAULTED_FUNCTION constexpr SpaceAwareAccessor() = default;