From: kronbichler Date: Fri, 21 Feb 2014 19:40:25 +0000 (+0000) Subject: Avoid one more compiler warning X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=162020f44ab145cd689578d5f450e5ccc9f6d33e;p=dealii-svn.git Avoid one more compiler warning git-svn-id: https://svn.dealii.org/trunk@32529 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/matrix_free/fe_evaluation.h b/deal.II/include/deal.II/matrix_free/fe_evaluation.h index c57c8ad1e7..f49488d2c7 100644 --- a/deal.II/include/deal.II/matrix_free/fe_evaluation.h +++ b/deal.II/include/deal.II/matrix_free/fe_evaluation.h @@ -6004,7 +6004,7 @@ FEEvaluation // Compute symmetric and skew-symmetric part of shape values for even-odd // decomposition - for (unsigned int i=0; i<(fe_degree+1)/2; ++i) + for (int i=0; i<(fe_degree+1)/2; ++i) for (unsigned int q=0; q<(n_q_points_1d+1)/2; ++q) { shape_val_evenodd[i][q] =