From d7c4894fa1503cb5a2aa0cea358c09dc0226ce0d Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Wed, 18 Apr 2018 21:12:11 +0200 Subject: [PATCH] Avoid warning regarding unused parameter --- source/lac/sparsity_tools.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/source/lac/sparsity_tools.cc b/source/lac/sparsity_tools.cc index 45cd0df01e..5bba13cd76 100644 --- a/source/lac/sparsity_tools.cc +++ b/source/lac/sparsity_tools.cc @@ -258,6 +258,7 @@ namespace SparsityTools Assert(cell_weights.size() == 0, ExcMessage("The cell weighting functionality for Zoltan has not yet been implemented.")); + (void) cell_weights; //MPI environment must have been initialized by this point. std::unique_ptr zz = std_cxx14::make_unique(MPI_COMM_SELF); -- 2.39.5