From: kronbichler Date: Wed, 27 Jul 2011 14:11:50 +0000 (+0000) Subject: Omit unused parameters. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=575fd065dca427165f79e2b8107c85c52d68783c;p=dealii-svn.git Omit unused parameters. git-svn-id: https://svn.dealii.org/trunk@23976 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/project_bv_curl_conf.cc b/tests/deal.II/project_bv_curl_conf.cc index b084490ac8..e3ff02c148 100644 --- a/tests/deal.II/project_bv_curl_conf.cc +++ b/tests/deal.II/project_bv_curl_conf.cc @@ -22,7 +22,8 @@ BoundaryFunction::BoundaryFunction (): Function (dim) { } template -void BoundaryFunction::vector_value (const Point& p, Vector& values) const { +void BoundaryFunction::vector_value (const Point&, + Vector& values) const { for (unsigned int d = 0; d < dim; ++d) values (d) = d + 1.0; } @@ -61,4 +62,4 @@ int main () { deallog << "dim=3:" << std::endl; test_boundary_values (fe_3); -} \ No newline at end of file +} diff --git a/tests/mpi/interpolate_02.cc b/tests/mpi/interpolate_02.cc index b55778b136..ab95fd9e77 100644 --- a/tests/mpi/interpolate_02.cc +++ b/tests/mpi/interpolate_02.cc @@ -51,7 +51,6 @@ template void test() { unsigned int myid = Utilities::System::get_this_mpi_process (MPI_COMM_WORLD); - unsigned int numproc = Utilities::System::get_n_mpi_processes (MPI_COMM_WORLD); // create a mesh so that all but one // processor are empty