From: Wolfgang Bangerth Date: Wed, 19 Jul 2017 18:06:01 +0000 (-0600) Subject: Remove an unnecessary cast. X-Git-Tag: v9.0.0-rc1~1403^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd3dd3841ab1b8b000601be725425ae59e2cafb1;p=dealii.git Remove an unnecessary cast. --- diff --git a/tests/distributed_grids/solution_transfer_02.cc b/tests/distributed_grids/solution_transfer_02.cc index 3c84946e9b..b0270a5b44 100644 --- a/tests/distributed_grids/solution_transfer_02.cc +++ b/tests/distributed_grids/solution_transfer_02.cc @@ -84,7 +84,7 @@ void test(std::ostream & /*out*/) Vector solution(dofh.n_dofs()); VectorTools::interpolate (mapping, - * static_cast* >(&dofh), + dofh, func, solution); diff --git a/tests/distributed_grids/solution_transfer_03.cc b/tests/distributed_grids/solution_transfer_03.cc index 2b3c41149b..7198897f23 100644 --- a/tests/distributed_grids/solution_transfer_03.cc +++ b/tests/distributed_grids/solution_transfer_03.cc @@ -104,7 +104,7 @@ void test(std::ostream & /*out*/) Vector solution(dofh.n_dofs()); VectorTools::interpolate (mapping, - * static_cast* >(&dofh), + dofh, func, solution);