From: bangerth Date: Wed, 25 Sep 2013 19:21:08 +0000 (+0000) Subject: Make two tests compile in 64-bit mode. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=444877dea3b4e89f096b78041da5532fe01b5164;p=dealii-svn.git Make two tests compile in 64-bit mode. git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@30924 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/grid_transform.cc b/tests/deal.II/grid_transform.cc index 43b800ff98..b417626514 100644 --- a/tests/deal.II/grid_transform.cc +++ b/tests/deal.II/grid_transform.cc @@ -46,7 +46,7 @@ int main () // build up a map of vertex indices // of boundary vertices to the new // boundary points - std::map > new_points; + std::map > new_points; // new center and new radius // of the inner circle. diff --git a/tests/deal.II/grid_transform_3d.cc b/tests/deal.II/grid_transform_3d.cc index 2505c97962..72f86fd928 100644 --- a/tests/deal.II/grid_transform_3d.cc +++ b/tests/deal.II/grid_transform_3d.cc @@ -44,7 +44,7 @@ int main () // build up a map of vertex indices // of boundary vertices to the new // boundary points - std::map > new_points; + std::map > new_points; Triangulation::active_cell_iterator cell=tria.begin_active(), endc=tria.end();