Skip to content

Commit

Permalink
fixup: LCL
Browse files Browse the repository at this point in the history
  • Loading branch information
streeve committed Sep 19, 2024
1 parent 3bcd819 commit edaf190
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/Cabana_LinkedCellList.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ class LinkedCellList

// Building the linked cell.
BinningData<MemorySpace> _bin_data;
Impl::CartesianGrid<Scalar> _grid;
Impl::CartesianGrid<Scalar, num_space_dim> _grid;

CountView _counts;
OffsetView _offsets;
Expand Down Expand Up @@ -815,8 +815,8 @@ struct is_linked_cell_list_impl : public std::false_type
{
};

template <typename MemorySpace, typename Scalar>
struct is_linked_cell_list_impl<LinkedCellList<MemorySpace, Scalar>>
template <typename MemorySpace, typename Scalar, std::size_t Dim>
struct is_linked_cell_list_impl<LinkedCellList<MemorySpace, Scalar, Dim>>
: public std::true_type
{
};
Expand Down

0 comments on commit edaf190

Please sign in to comment.