From d4050c28f4aa03cb787fc60d8b8899b1c5a5a8c1 Mon Sep 17 00:00:00 2001 From: Nicholas Cantrell Date: Thu, 15 Aug 2024 16:26:34 -0600 Subject: [PATCH] removed (void) occurrences from source/fe/fe_face.cc --- source/fe/fe_face.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/source/fe/fe_face.cc b/source/fe/fe_face.cc index 8b50fc9c76..f624baf989 100644 --- a/source/fe/fe_face.cc +++ b/source/fe/fe_face.cc @@ -449,7 +449,6 @@ FE_FaceQ::compare_for_domination( const unsigned int codim) const { Assert(codim <= dim, ExcImpossibleInDim(dim)); - (void)codim; // vertex/line/face/cell domination // -------------------------------- @@ -579,9 +578,6 @@ FE_FaceQ<1, spacedim>::get_subface_interpolation_matrix( FullMatrix &interpolation_matrix, const unsigned int face_no) const { - (void)x_source_fe; - (void)face_no; - Assert(interpolation_matrix.n() == this->n_dofs_per_face(face_no), ExcDimensionMismatch(interpolation_matrix.n(), this->n_dofs_per_face(face_no))); @@ -834,7 +830,6 @@ FE_FaceP::compare_for_domination( const unsigned int codim) const { Assert(codim <= dim, ExcImpossibleInDim(dim)); - (void)codim; // vertex/line/face/cell domination // -------------------------------- @@ -956,7 +951,6 @@ FE_FaceP::get_subface_interpolation_matrix( v_in(k) = this->poly_space.compute_value(i, p); } const double result = H.least_squares(v_out, v_in); - (void)result; 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