Skip to content

Commit

Permalink
Merge pull request #16466 from bangerth/trilinos-array
Browse files Browse the repository at this point in the history
Fix a trilinos array type.
  • Loading branch information
kronbichler committed Jan 13, 2024
2 parents 9bcd4f8 + 542326c commit 789c5f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/lac/trilinos_tpetra_sparsity_pattern.cc
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ namespace LinearAlgebra
NodeType>::nonconst_global_inds_host_view_type
column_indices_view(colnum_cache->data(), colnum_cache->size());
# else
Teuchos::ArrayView<long long> column_indices_view(
colnum_cache->data(), colnum_cache->size());
Teuchos::ArrayView<dealii::types::signed_global_dof_index>
column_indices_view(colnum_cache->data(), colnum_cache->size());
# endif
sparsity_pattern->graph->getGlobalRowCopy(this->a_row,
column_indices_view,
Expand Down

0 comments on commit 789c5f6

Please sign in to comment.