From: Matthias Maier Date: Wed, 16 Oct 2013 22:54:11 +0000 (+0000) Subject: Try to fix an issue with MinGW64 4.8.1 X-Git-Tag: v8.1.0~570^2~35 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc882bd3bc8db44d2fc67e5f405a26506986de25;p=dealii.git Try to fix an issue with MinGW64 4.8.1 git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@31273 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/grid/grid_tools.cc b/deal.II/source/grid/grid_tools.cc index df146a150b..9ad7a35955 100644 --- a/deal.II/source/grid/grid_tools.cc +++ b/deal.II/source/grid/grid_tools.cc @@ -1557,8 +1557,8 @@ next_cell: for (unsigned int i=0; i::vertices_per_cell; ++i) parent_vertices[i] = object->vertex(i); - GeometryInfo::alternating_form_at_vertices (parent_vertices, - parent_alternating_forms); + GeometryInfo::template alternating_form_at_vertices + (parent_vertices, parent_alternating_forms); const Tensor average_parent_alternating_form @@ -1595,8 +1595,8 @@ next_cell: = object_mid_point; for (unsigned int c=0; cn_children(); ++c) - GeometryInfo::alternating_form_at_vertices (child_vertices[c], - child_alternating_forms[c]); + GeometryInfo::template alternating_form_at_vertices + (child_vertices[c], child_alternating_forms[c]); // on a uniformly refined // hypercube object, the child @@ -1893,8 +1893,8 @@ next_cell: Tensor parent_alternating_forms [GeometryInfo::vertices_per_cell]; - GeometryInfo::alternating_form_at_vertices (parent_vertices, - parent_alternating_forms); + GeometryInfo::template alternating_form_at_vertices + (parent_vertices, parent_alternating_forms); Point child_vertices [GeometryInfo::max_children_per_cell] @@ -1909,8 +1909,8 @@ next_cell: [GeometryInfo::vertices_per_cell]; for (unsigned int c=0; cn_children(); ++c) - GeometryInfo::alternating_form_at_vertices (child_vertices[c], - child_alternating_forms[c]); + GeometryInfo::template alternating_form_at_vertices + (child_vertices[c], child_alternating_forms[c]); old_min_product = child_alternating_forms[0][0] * parent_alternating_forms[0]; for (unsigned int c=0; cn_children(); ++c) @@ -1931,8 +1931,8 @@ next_cell: = object_mid_point; for (unsigned int c=0; cn_children(); ++c) - GeometryInfo::alternating_form_at_vertices (child_vertices[c], - child_alternating_forms[c]); + GeometryInfo::template alternating_form_at_vertices + (child_vertices[c], child_alternating_forms[c]); new_min_product = child_alternating_forms[0][0] * parent_alternating_forms[0]; for (unsigned int c=0; cn_children(); ++c)