From: bangerth Date: Wed, 13 Aug 2008 20:07:52 +0000 (+0000) Subject: Silence a warning. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d56b07f76f7f2c95390ed2c31d3e7e9d335cfa0;p=dealii-svn.git Silence a warning. git-svn-id: https://svn.dealii.org/trunk@16537 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-31/step-31.cc b/deal.II/examples/step-31/step-31.cc index 2e7a91ea4f..a27a3446e6 100644 --- a/deal.II/examples/step-31/step-31.cc +++ b/deal.II/examples/step-31/step-31.cc @@ -220,7 +220,7 @@ void TrilinosAmgPreconditioner::initialize ( ++col_counter; } } - Assert (col_counter == row_lengths[row], + Assert (col_counter == static_cast(row_lengths[row]), ExcMessage("Filtering out zeros could not " "be successfully finished!"));