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-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4560eeaeda6603eb7aaff85b8da9fcdab9afe272;p=dealii-svn.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()); }