From: bangerth Date: Wed, 13 Feb 2013 03:31:46 +0000 (+0000) Subject: Avoid a warning with some compilers. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=804afa95d996413c2f8441a1a82e1cbab94ebc5f;p=dealii-svn.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>;