From: Wolfgang Bangerth Date: Mon, 23 Apr 2007 12:23:36 +0000 (+0000) Subject: Make a function const. X-Git-Tag: v8.0.0~10377 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce0f73fe8975d05e4db4d755c1447ded60cb2198;p=dealii.git Make a function const. git-svn-id: https://svn.dealii.org/trunk@14638 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/householder.h b/deal.II/lac/include/lac/householder.h index 0ca47e416b..f44a4c4426 100644 --- a/deal.II/lac/include/lac/householder.h +++ b/deal.II/lac/include/lac/householder.h @@ -77,7 +77,7 @@ class Householder : private FullMatrix */ template double least_squares (Vector &dst, - Vector &src); + Vector &src) const; private: /** @@ -153,7 +153,7 @@ template template double Householder::least_squares (Vector& dst, - Vector& src) + Vector& src) const { // Assert (!this->empty(), ExcEmptyMatrix());