From: Martin Kronbichler Date: Fri, 26 Jun 2020 19:08:00 +0000 (+0200) Subject: Avoid warning of unused variable in release mode X-Git-Tag: v9.3.0-rc1~1363^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74284b06d25ee1ed61684fb818f76f2e7e0f10e7;p=dealii.git Avoid warning of unused variable in release mode --- 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());