From: bangerth Date: Mon, 16 Sep 2013 19:48:26 +0000 (+0000) Subject: Avoid (completely legitimate) warning. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9cac5b66b92c29e7123115c4375f8747d3cf4de;p=dealii-svn.git Avoid (completely legitimate) warning. git-svn-id: https://svn.dealii.org/trunk@30741 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/hp/dof_handler.cc b/deal.II/source/hp/dof_handler.cc index d6afadf43c..fdb3a42ae5 100644 --- a/deal.II/source/hp/dof_handler.cc +++ b/deal.II/source/hp/dof_handler.cc @@ -1458,7 +1458,7 @@ namespace internal // line_dofs_offsets field dof_handler.faces->lines.dof_offsets .resize (dof_handler.tria->n_raw_lines(), - numbers::invalid_dof_index); + numbers::invalid_unsigned_int); unsigned int line_slots_needed = 0; for (unsigned int line=0; linen_raw_lines(); ++line)