Skip to content

Commit

Permalink
fix type static_case -> static_case
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Fuller <[email protected]>
  • Loading branch information
tjfulle committed Jan 31, 2025
1 parent d139485 commit 3281872
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tpetra/core/src/Tpetra_CrsMatrix_def.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6086,7 +6086,7 @@ CrsMatrix<Scalar, LocalOrdinal, GlobalOrdinal, Node>::
local_inds_device_value_t tend = tgtLocalRowPtrsDevice(sourceLID + 1);
local_inds_device_value_t numInTgtRow = (tend - tstart);

KOKKOS_ASSERT(static_case<size_t>(tstart) < tvals.extent(0));
KOKKOS_ASSERT(static_cast<decltype(tvals.extent(0))>(tstart) < tvals.extent(0));
impl_scalar_type *tgtRowVals = reinterpret_cast<impl_scalar_type *>(&tvals(tstart));
const local_inds_device_value_t *tgtColInds = &tgtLocalColIndsDevice(tstart);

Expand Down

0 comments on commit 3281872

Please sign in to comment.