From e494154c336342e3f44fe9b6b48cf018ca435f2b Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Fri, 19 Dec 2014 09:27:02 +0100 Subject: [PATCH] Fix constructor of SchurMatrix for 64 bit indices. --- include/deal.II/lac/schur_matrix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/lac/schur_matrix.h b/include/deal.II/lac/schur_matrix.h index ee3738ba4f..b6596d743e 100644 --- a/include/deal.II/lac/schur_matrix.h +++ b/include/deal.II/lac/schur_matrix.h @@ -111,7 +111,7 @@ public: const MDt &Dt, const MC &C, VectorMemory > &mem, - const std::vector &signature = std::vector(0)); + const std::vector &signature = std::vector(0)); /** * Do block elimination of the right hand side. Given right hand sides for @@ -207,7 +207,7 @@ SchurMatrix const MDt &Dt, const MC &C, VectorMemory > &mem, - const std::vector &signature) + const std::vector &signature) : Ainv(&Ainv), B(&B), Dt(&Dt), C(&C), mem(mem), signature(signature), -- 2.39.5