From: Martin Kronbichler Date: Mon, 24 Nov 2014 16:55:42 +0000 (+0100) Subject: Avoid compiler with gcc 4.7 X-Git-Tag: v8.2.0-rc1~43^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf8d6d6372735d21bd3090cf568026b17ba2daa2;p=dealii.git Avoid compiler with gcc 4.7 --- diff --git a/source/grid/grid_tools.cc b/source/grid/grid_tools.cc index 72a48e641d..8b5ad5d775 100644 --- a/source/grid/grid_tools.cc +++ b/source/grid/grid_tools.cc @@ -768,6 +768,7 @@ namespace GridTools distributed_triangulation ->communicate_locally_moved_vertices(locally_owned_vertices); #else + (void)distributed_triangulation; Assert (false, ExcInternalError()); #endif }