From 74284b06d25ee1ed61684fb818f76f2e7e0f10e7 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Fri, 26 Jun 2020 21:08:00 +0200 Subject: [PATCH] Avoid warning of unused variable in release mode --- include/deal.II/matrix_free/fe_evaluation.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/deal.II/matrix_free/fe_evaluation.h b/include/deal.II/matrix_free/fe_evaluation.h index af35947630..8d0f6761b4 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -3830,6 +3830,7 @@ namespace internal VectorizedArrayType2 & out, const FU & fu) { + (void)matrix_info; Assert(matrix_info != nullptr, ExcNotImplemented()); AssertDimension(array.size(), matrix_info->get_task_info().cell_partition_data.back()); -- 2.39.5