From: Ralf Hartmann Date: Mon, 27 Feb 2006 16:50:09 +0000 (+0000) Subject: Remove unnecessary template argument of InterGridMap. X-Git-Tag: v8.0.0~12168 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=003e90978b1f9ff14e63d1206585787012228d5a;p=dealii.git Remove unnecessary template argument of InterGridMap. git-svn-id: https://svn.dealii.org/trunk@12514 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/christian_1.cc b/tests/bits/christian_1.cc index d686d20663..a5a6547fc2 100644 --- a/tests/bits/christian_1.cc +++ b/tests/bits/christian_1.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2005 by the deal.II authors and Christian Kamm +// Copyright (C) 2005, 2006 by the deal.II authors and Christian Kamm // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -53,7 +53,7 @@ DoFToolsEx::transfer(const DoFHandler& source_dof, const InVector& source_v // any sanity tests? Trias derived from same coarse grid? // build mappings between the cells - InterGridMap source2target, target2source; + InterGridMap > source2target, target2source; source2target.make_mapping(source_dof, target_dof); target2source.make_mapping(target_dof, source_dof); diff --git a/tests/deal.II/intergrid_constraints.cc b/tests/deal.II/intergrid_constraints.cc index f048dc2cd1..2810b71023 100644 --- a/tests/deal.II/intergrid_constraints.cc +++ b/tests/deal.II/intergrid_constraints.cc @@ -119,7 +119,7 @@ void check () // now compute intergrid // constraints - InterGridMap intergrid_map; + InterGridMap > intergrid_map; intergrid_map.make_mapping (dof_1, dof_2); ConstraintMatrix intergrid_constraints; diff --git a/tests/deal.II/intergrid_map.cc b/tests/deal.II/intergrid_map.cc index 42c3fa3056..3335c04eb6 100644 --- a/tests/deal.II/intergrid_map.cc +++ b/tests/deal.II/intergrid_map.cc @@ -49,8 +49,8 @@ void check () dof_2.distribute_dofs (fe_2); // create some mapping - InterGridMap intergrid_map_1; - InterGridMap intergrid_map_2; + InterGridMap > intergrid_map_1; + InterGridMap > intergrid_map_2; intergrid_map_1.make_mapping (dof_1, dof_2); intergrid_map_2.make_mapping (dof_2, dof_1);