From: Wolfgang Bangerth Date: Mon, 13 Jan 2014 23:31:29 +0000 (+0000) Subject: Match names of template arguments. This appears to confuse MSVC otherwise... X-Git-Tag: v8.2.0-rc1~1039 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6023e0d6c8611d2ce6faeec33a6c8ba96ec6e80;p=dealii.git 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 --- 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()); }