From 09535f54fcf508cf0e19cebf3cce5c7083c0e4dc Mon Sep 17 00:00:00 2001 From: turcksin Date: Mon, 3 Jun 2013 20:52:54 +0000 Subject: [PATCH] Fix a bug in sparse_matrix.template.h git-svn-id: https://svn.dealii.org/branches/branch_bigger_global_dof_indices_4@29744 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/lac/sparse_matrix.templates.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/include/deal.II/lac/sparse_matrix.templates.h b/deal.II/include/deal.II/lac/sparse_matrix.templates.h index 950629792b..dbb8b38cdc 100644 --- a/deal.II/include/deal.II/lac/sparse_matrix.templates.h +++ b/deal.II/include/deal.II/lac/sparse_matrix.templates.h @@ -380,7 +380,7 @@ SparseMatrix::copy_from (const TrilinosWrappers::SparseMatrix &matrix) = matrix.trilinos_matrix().ExtractGlobalRowCopy (row, matrix.row_length(row), ncols, &(value_cache[0]), - reinterpret_cast(&(colnum_cache[0]))); + reinterpret_cast(&(colnum_cache[0]))); Assert (ierr==0, ExcTrilinosError(ierr)); // resize arrays to the size actually used -- 2.39.5