From f6023e0d6c8611d2ce6faeec33a6c8ba96ec6e80 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 13 Jan 2014 23:31:29 +0000 Subject: [PATCH] Match names of template arguments. This appears to confuse MSVC otherwise... git-svn-id: https://svn.dealii.org/trunk@32203 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/grid/grid_tools.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/deal.II/include/deal.II/grid/grid_tools.h b/deal.II/include/deal.II/grid/grid_tools.h index b65081d4a5..5f43b3af9e 100644 --- a/deal.II/include/deal.II/grid/grid_tools.h +++ b/deal.II/include/deal.II/grid/grid_tools.h @@ -1,7 +1,7 @@ // --------------------------------------------------------------------- // $Id$ // -// Copyright (C) 2001 - 2013 by the deal.II authors +// Copyright (C) 2001 - 2014 by the deal.II authors // // This file is part of the deal.II library. // @@ -1236,11 +1236,11 @@ namespace GridTools - template - std::vector - get_active_child_cells (const typename DH::cell_iterator &cell) + template + std::vector + get_active_child_cells (const typename Container::cell_iterator &cell) { - std::vector child_cells; + std::vector child_cells; if (cell->has_children()) { @@ -1248,8 +1248,8 @@ namespace GridTools childn_children(); ++child) if (cell->child (child)->has_children()) { - const std::vector - children = get_active_child_cells (cell->child(child)); + const std::vector + children = get_active_child_cells (cell->child(child)); child_cells.insert (child_cells.end(), children.begin(), children.end()); } -- 2.39.5