From 313532b4627d661c3307f6b52813f2553295b01d Mon Sep 17 00:00:00 2001 From: David Wells Date: Sat, 16 Sep 2017 14:50:30 -0400 Subject: [PATCH] Get rid of two unused variable warnings. --- source/sundials/ida.cc | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.39.5