From: Karl Ljungkvist Date: Fri, 27 May 2016 22:32:59 +0000 (-0500) Subject: suppress warnings about implicit cast X-Git-Tag: v8.5.0-rc1~1001^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8eaa25d842726940618f49937a70b3eb62f5f6a;p=dealii.git suppress warnings about implicit cast --- diff --git a/include/deal.II/matrix_free/fe_evaluation.h b/include/deal.II/matrix_free/fe_evaluation.h index 191c8374e7..b8dcb9fc3a 100644 --- a/include/deal.II/matrix_free/fe_evaluation.h +++ b/include/deal.II/matrix_free/fe_evaluation.h @@ -1800,10 +1800,10 @@ FEEvaluationBase const unsigned int first_selected_component, const FEEvaluationBase *other) : - quad_no (-1), + quad_no (numbers::invalid_unsigned_int), n_fe_components (n_components_), - active_fe_index (-1), - active_quad_index (-1), + active_fe_index (numbers::invalid_unsigned_int), + active_quad_index (numbers::invalid_unsigned_int), matrix_info (0), dof_info (0), mapping_info (0),