From 7510fd15fa712b9c10981970d6ebc66f45e1ed5b Mon Sep 17 00:00:00 2001 From: Bruno Turcksin Date: Fri, 22 Aug 2014 17:29:01 -0500 Subject: [PATCH] Fix a compilation error with gcc 4.4. --- source/grid/manifold.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/grid/manifold.cc b/source/grid/manifold.cc index a2b1118a25..2835521035 100644 --- a/source/grid/manifold.cc +++ b/source/grid/manifold.cc @@ -249,7 +249,7 @@ get_new_point_on_hex (const typename Triangulation::hex_iterator template <> Point<3> Manifold<3,3>:: -get_new_point_on_hex (const typename Triangulation<3, 3>::hex_iterator &hex) const +get_new_point_on_hex (const Triangulation<3, 3>::hex_iterator &hex) const { return get_new_point(get_default_quadrature(hex)); } -- 2.39.5