From: David Wells Date: Sat, 16 Sep 2017 18:50:30 +0000 (-0400) Subject: Get rid of two unused variable warnings. X-Git-Tag: v9.0.0-rc1~1069^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=313532b4627d661c3307f6b52813f2553295b01d;p=dealii.git Get rid of two unused variable warnings. --- diff --git a/source/sundials/ida.cc b/source/sundials/ida.cc index d4212bff02..830ee4baff 100644 --- a/source/sundials/ida.cc +++ b/source/sundials/ida.cc @@ -179,6 +179,7 @@ namespace SUNDIALS unsigned int step_number = 0; int status; + (void)status; // The solution is stored in // solution. Here we take only a @@ -306,6 +307,7 @@ namespace SUNDIALS } int status; + (void)status; system_size = solution.size(); #ifdef DEAL_II_WITH_MPI if (is_serial_vector::value == false)