From: Wolfgang Bangerth Date: Fri, 20 Apr 2018 16:04:58 +0000 (-0600) Subject: Fix test for GCC 4.8.4 by doing a conversion explicitly. X-Git-Tag: v9.0.0-rc1~152^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6275%2Fhead;p=dealii.git Fix test for GCC 4.8.4 by doing a conversion explicitly. --- 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