From: Wolfgang Bangerth Date: Wed, 13 Aug 2008 20:07:52 +0000 (+0000) Subject: Silence a warning. X-Git-Tag: v8.0.0~8895 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0b116a53d6f0a942bdc79f2987a77c86c13670a;p=dealii.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!"));