From: Wolfgang Bangerth Date: Tue, 11 Feb 2014 04:10:09 +0000 (+0000) Subject: Explicitly specify template arguments in hopes to help MS VC++. X-Git-Tag: v8.2.0-rc1~852 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8271c1ec6f2b683ec66a46bcababc77618ce7fe;p=dealii.git Explicitly specify template arguments in hopes to help MS VC++. git-svn-id: https://svn.dealii.org/trunk@32453 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/grid/grid_tools.cc b/deal.II/source/grid/grid_tools.cc index 44cdca00d7..e96dab3f2f 100644 --- a/deal.II/source/grid/grid_tools.cc +++ b/deal.II/source/grid/grid_tools.cc @@ -977,7 +977,8 @@ next_cell: // is for. if (!found && cells_searched < n_cells) { - find_active_cell_around_point_internal(container, searched_cells, adjacent_cells); + find_active_cell_around_point_internal + (container, searched_cells, adjacent_cells); } } @@ -1098,7 +1099,8 @@ next_cell: // the cells in adjacent_cells. if (!found && cells_searched < n_cells) { - find_active_cell_around_point_internal(container, searched_cells, adjacent_cells); + find_active_cell_around_point_internal + (container, searched_cells, adjacent_cells); } }