From: Daniel Garcia-Sanchez Date: Tue, 27 Aug 2019 17:13:43 +0000 (+0200) Subject: Remove unused variable warning X-Git-Tag: v9.2.0-rc1~1169^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8656%2Fhead;p=dealii.git Remove unused variable warning --- diff --git a/source/distributed/solution_transfer.cc b/source/distributed/solution_transfer.cc index af72125dbd..222884d101 100644 --- a/source/distributed/solution_transfer.cc +++ b/source/distributed/solution_transfer.cc @@ -61,7 +61,10 @@ namespace const unsigned int dofs_per_cell) { for (const auto &values : dof_values) - AssertDimension(values.size(), dofs_per_cell); + { + AssertDimension(values.size(), dofs_per_cell); + (void)values; + } const std::size_t bytes_per_entry = sizeof(value_type) * dofs_per_cell;