From: Martin Kronbichler Date: Thu, 2 Jun 2022 07:42:58 +0000 (+0200) Subject: Avoid warning regarding unused variable X-Git-Tag: v9.4.0-rc1~83^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6604e193298249c11f7ced9d5e059562a13e7da;p=dealii.git Avoid warning regarding unused variable --- diff --git a/include/deal.II/cgal/utilities.h b/include/deal.II/cgal/utilities.h index 5d5b974a11..5758429575 100644 --- a/include/deal.II/cgal/utilities.h +++ b/include/deal.II/cgal/utilities.h @@ -437,6 +437,7 @@ namespace CGALWrappers output_surface_mesh.clear(); break; } + (void)res; Assert(res, ExcMessage("The boolean operation was not successfully computed.")); }