From: Simon Sticko Date: Mon, 24 Jul 2017 09:22:13 +0000 (+0200) Subject: Remove a compiler warning in ImmersedSurfaceQuadrature. X-Git-Tag: v9.0.0-rc1~1390^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbcb71e15dad9f893e2df2e07117c29e444a3f9e;p=dealii.git Remove a compiler warning in ImmersedSurfaceQuadrature. --- diff --git a/source/non_matching/immersed_surface_quadrature.cc b/source/non_matching/immersed_surface_quadrature.cc index 288620d14a..f130b016e8 100644 --- a/source/non_matching/immersed_surface_quadrature.cc +++ b/source/non_matching/immersed_surface_quadrature.cc @@ -31,6 +31,7 @@ namespace NonMatching AssertDimension (normals.size(), points.size()); for (auto normal : normals) { + (void)normal; Assert(std::abs(normal.norm() - 1.0) < 1e-9, ExcMessage("Normal is not normalized.")); }