From a986023c18e8117f98f883fedb42623ac665e509 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Thu, 8 Sep 2022 09:18:08 +0200 Subject: [PATCH] Fix another warning about an unused variable --- include/deal.II/lac/precondition.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/deal.II/lac/precondition.h b/include/deal.II/lac/precondition.h index 7f060aca6f..d5d143a68b 100644 --- a/include/deal.II/lac/precondition.h +++ b/include/deal.II/lac/precondition.h @@ -1198,6 +1198,7 @@ namespace internal const unsigned int i, const bool transposed) { + (void)transposed; using Number = typename VectorType::value_type; if (i == 0) -- 2.39.5