From: Martin Kronbichler Date: Tue, 25 Feb 2014 20:29:46 +0000 (+0000) Subject: Avoid compilation warning X-Git-Tag: v8.2.0-rc1~777 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d77d11052b4421baafe2ccd6e99ecd4836518ed7;p=dealii.git Avoid compilation warning git-svn-id: https://svn.dealii.org/trunk@32554 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 3e0b1a1fe3..05f544e929 100644 --- a/deal.II/include/deal.II/matrix_free/fe_evaluation.h +++ b/deal.II/include/deal.II/matrix_free/fe_evaluation.h @@ -6674,14 +6674,14 @@ FEEvaluationDGP unsigned int count_p = 0, count_q = 0; for (unsigned int i=0; i<(dim>2?fe_degree+1:1); ++i) { - for (int j=0; j<(dim>1?fe_degree+1-i:1); ++j) + for (unsigned int j=0; j<(dim>1?fe_degree+1-i:1); ++j) { - for (int k=0; kvalues_dofs[c][count_p]; } - for (int k=fe_degree+1-j-i; k(); } @@ -6736,9 +6736,9 @@ FEEvaluationDGP unsigned int count_p = 0, count_q = 0; for (unsigned int i=0; i<(dim>2?fe_degree+1:1); ++i) { - for (int j=0; j<(dim>1?fe_degree+1-i:1); ++j) + for (unsigned int j=0; j<(dim>1?fe_degree+1-i:1); ++j) { - for (int k=0; kvalues_dofs[c][count_p] = expanded_dof_values[c][count_q];