From 6bed346035fe45aee3ce784ae85602b9e5ccb3a6 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Fri, 20 Apr 2018 10:04:58 -0600 Subject: [PATCH] Fix test for GCC 4.8.4 by doing a conversion explicitly. --- tests/grid/distributed_compute_point_locations_02.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/grid/distributed_compute_point_locations_02.cc b/tests/grid/distributed_compute_point_locations_02.cc index 1ead16c1f0..782d1fbbc2 100644 --- a/tests/grid/distributed_compute_point_locations_02.cc +++ b/tests/grid/distributed_compute_point_locations_02.cc @@ -118,7 +118,8 @@ void test_compute_pt_loc(unsigned int ref_cube, unsigned int ref_sphere) // Computing bounding boxes describing the locally owned part of the mesh IteratorFilters::LocallyOwnedCell locally_owned_cell_predicate; std::vector< BoundingBox > local_bbox = GridTools::compute_mesh_predicate_bounding_box - (cache.get_triangulation(), locally_owned_cell_predicate, + (cache.get_triangulation(), + std::function::active_cell_iterator &)>(locally_owned_cell_predicate), 1, true, 4); // Obtaining the global mesh description through an all to all communication -- 2.39.5