From 4560eeaeda6603eb7aaff85b8da9fcdab9afe272 Mon Sep 17 00:00:00 2001 From: kayser-herold Date: Tue, 26 Sep 2006 20:49:14 +0000 Subject: [PATCH] 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 --- deal.II/lac/source/lapack_full_matrix.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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()); } -- 2.39.5