From c8eaa25d842726940618f49937a70b3eb62f5f6a Mon Sep 17 00:00:00 2001 From: Karl Ljungkvist Date: Fri, 27 May 2016 17:32:59 -0500 Subject: [PATCH] suppress warnings about implicit cast --- include/deal.II/matrix_free/fe_evaluation.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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), -- 2.39.5