From dbcb71e15dad9f893e2df2e07117c29e444a3f9e Mon Sep 17 00:00:00 2001 From: Simon Sticko Date: Mon, 24 Jul 2017 11:22:13 +0200 Subject: [PATCH] Remove a compiler warning in ImmersedSurfaceQuadrature. --- source/non_matching/immersed_surface_quadrature.cc | 1 + 1 file changed, 1 insertion(+) 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.")); } -- 2.39.5