Skip to content

Commit

Permalink
Use correct includes for spaceawareaccessor
Browse files Browse the repository at this point in the history
  • Loading branch information
crtrott committed Jun 19, 2024
1 parent 6c78f4b commit 7b962ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/View/MDSpan/Kokkos_MDSpan_Accessor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ static_assert(false,

#include <Kokkos_Macros.hpp>
#include <Kokkos_Concepts.hpp>
#include <impl/Kokkos_Utilities.hpp>
#include <Kokkos_Core_fwd.hpp>

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 {

Expand All @@ -43,7 +43,7 @@ struct SpaceAwareAccessor {

using memory_space = MemorySpace;

static_assert(is_memory_space<memory_space>::value);
static_assert(is_memory_space_v<memory_space>);

KOKKOS_DEFAULTED_FUNCTION
constexpr SpaceAwareAccessor() = default;
Expand Down

0 comments on commit 7b962ce

Please sign in to comment.