From: Martin Kronbichler Date: Fri, 19 Dec 2014 08:27:02 +0000 (+0100) Subject: Fix constructor of SchurMatrix for 64 bit indices. X-Git-Tag: v8.3.0-rc1~596^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e494154c336342e3f44fe9b6b48cf018ca435f2b;p=dealii.git Fix constructor of SchurMatrix for 64 bit indices. --- 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),