From: kayser-herold Date: Tue, 26 Sep 2006 20:49:14 +0000 (+0000) Subject: Microfix. The interface of compute_eigenvalues was not changed for the X-Git-Tag: v8.0.0~11008 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=edbb9c474ecc49d1244f98da44b13159b035ceb7;p=dealii.git Microfix. The interface of compute_eigenvalues was not changed for the non-lapack version of the code. git-svn-id: https://svn.dealii.org/trunk@13965 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/lapack_full_matrix.cc b/deal.II/lac/source/lapack_full_matrix.cc index 723d0b96a5..f4879bca30 100644 --- a/deal.II/lac/source/lapack_full_matrix.cc +++ b/deal.II/lac/source/lapack_full_matrix.cc @@ -234,7 +234,8 @@ LAPACKFullMatrix::compute_eigenvalues( template void -LAPACKFullMatrix::compute_eigenvalues() +LAPACKFullMatrix::compute_eigenvalues(const bool /*right*/, + const bool /*left*/) { Assert(false, ExcNeedsLAPACK()); }