Skip to content

Commit

Permalink
Fix warning with new Kokkos
Browse files Browse the repository at this point in the history
  • Loading branch information
etphipp committed Sep 6, 2023
1 parent 54b40e5 commit a38dec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Genten_Kokkos_ScatterView.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ struct DuplicatedDataType<T*, Kokkos::LayoutLeft> {
subview where the index specified is the largest-stride one. */
template <typename Layout, int rank, typename V, typename ... Args>
struct Slice {
typedef Slice<Layout, rank - 1, V, Kokkos::Impl::ALL_t, Args...> next;
typedef Slice<Layout, rank - 1, V, Kokkos::ALL_t, Args...> next;
typedef typename next::value_type value_type;

static
Expand Down

0 comments on commit a38dec2

Please sign in to comment.