Skip to content

Commit

Permalink
Merge pull request #13324 from kronbichler/fix_warning
Browse files Browse the repository at this point in the history
Fix warning regarding unused parameter
  • Loading branch information
tamiko committed Feb 2, 2022
2 parents 15b66bf + b3ad7f2 commit cb1d9a6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions include/deal.II/base/mpi_consensus_algorithms.templates.h
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,7 @@ namespace Utilities
void
NBX<T1, T2>::clean_up_and_end_communication(const MPI_Comm &comm)
{
(void)comm;
#ifdef DEAL_II_WITH_MPI
// clean up
{
Expand Down Expand Up @@ -528,8 +529,6 @@ namespace Utilities
AssertThrowMPI(ierr);
# endif
}
#else
(void)comm;
#endif
}

Expand Down

0 comments on commit cb1d9a6

Please sign in to comment.