From 38eaeba62bd774322ecd5efc8d7b2dadaa0eb70e Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 19 Aug 2024 21:47:17 -0600 Subject: [PATCH] Suppress a warning about an unused variable. --- source/fe/fe_face.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/fe/fe_face.cc b/source/fe/fe_face.cc index f624baf989..78b4f7d5d1 100644 --- a/source/fe/fe_face.cc +++ b/source/fe/fe_face.cc @@ -950,7 +950,7 @@ FE_FaceP::get_subface_interpolation_matrix( face_quadrature.point(k), subface); v_in(k) = this->poly_space.compute_value(i, p); } - const double result = H.least_squares(v_out, v_in); + [[maybe_unused]] const double result = H.least_squares(v_out, v_in); Assert(result < 1e-12, FETools::ExcLeastSquaresError(result)); for (unsigned int j = 0; j < source_fe->n_dofs_per_face(face_no); ++j) -- 2.39.5