From: Mahdi Gharehbaygloo Date: Fri, 16 Aug 2024 17:38:20 +0000 (-0500) Subject: worked on (void) occurences during workshop X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17555%2Fhead;p=dealii.git worked on (void) occurences during workshop --- diff --git a/source/grid/grid_tools.cc b/source/grid/grid_tools.cc index 92fdf88df5..03f432e725 100644 --- a/source/grid/grid_tools.cc +++ b/source/grid/grid_tools.cc @@ -197,11 +197,9 @@ namespace GridTools template void - rotate(const double angle, Triangulation &triangulation) + rotate(const double /*angle*/, + Triangulation & /*triangulation*/) { - (void)angle; - (void)triangulation; - AssertThrow(false, ExcMessage( "GridTools::rotate() is only available for spacedim = 2."));