From: Wolfgang Bangerth Date: Tue, 20 Apr 2004 21:26:39 +0000 (+0000) Subject: Remove an obstacle that icc sees. X-Git-Tag: v8.0.0~15273 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd4de7d049acb4cbcc70d1bd7eadf1b4ae9c331c;p=dealii.git Remove an obstacle that icc sees. git-svn-id: https://svn.dealii.org/trunk@9076 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/petsc_matrix_base.cc b/deal.II/lac/source/petsc_matrix_base.cc index befa69ea7c..a89b66c9d8 100644 --- a/deal.II/lac/source/petsc_matrix_base.cc +++ b/deal.II/lac/source/petsc_matrix_base.cc @@ -60,8 +60,7 @@ namespace PETScWrappers // available int ierr; int begin, end; - ierr = MatGetOwnershipRange (static_cast(*matrix), - &begin, &end); + ierr = MatGetOwnershipRange (*matrix, &begin, &end); AssertThrow (ierr == 0, ExcPETScError(ierr)); AssertThrow ((this->a_row >= static_cast(begin)) &&