From: Wolfgang Bangerth Date: Wed, 13 Feb 2013 03:31:46 +0000 (+0000) Subject: Avoid a warning with some compilers. X-Git-Tag: v8.0.0~1330 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a54e1017f2d8691128d9f814013858c93e7de33f;p=dealii.git Avoid a warning with some compilers. git-svn-id: https://svn.dealii.org/trunk@28355 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/numerics/matrix_tools.cc b/deal.II/source/numerics/matrix_tools.cc index 855306a649..d48a26831c 100644 --- a/deal.II/source/numerics/matrix_tools.cc +++ b/deal.II/source/numerics/matrix_tools.cc @@ -2295,7 +2295,7 @@ namespace MatrixTools // find the position of element (row,dof_number) in this // block (not in the transpose one). note that we have to // take care of special cases with square sub-matrices - bool (*comp)(const typename SparseMatrix::iterator::value_type p, + bool (*comp)(typename SparseMatrix::iterator::value_type p, const unsigned int column) = &column_less_than::iterator>;