From: Wolfgang Bangerth Date: Fri, 31 Oct 2008 17:49:59 +0000 (+0000) Subject: Ignore unused variables. X-Git-Tag: v8.0.0~8427 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b05337073d718948417a9bfeb38205f975bbc3c3;p=dealii.git Ignore unused variables. git-svn-id: https://svn.dealii.org/trunk@17434 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/utilities.cc b/deal.II/base/source/utilities.cc index 129f8ebcf9..339365f5e4 100644 --- a/deal.II/base/source/utilities.cc +++ b/deal.II/base/source/utilities.cc @@ -521,6 +521,11 @@ namespace Utilities mpi_err = MPI_Init (&argc, &argv); AssertThrow (mpi_err == 0, ExcMessage ("MPI could not be initialized.")); +#else + // make sure the compiler doesn't warn + // about these variables + (void)argc; + (void)argv; #endif constructor_has_already_run = true;