From: Martin Kronbichler Date: Mon, 11 Mar 2013 07:11:44 +0000 (+0000) Subject: Fix compilation warning. X-Git-Tag: v8.0.0~1033 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2169a2ccb4da504169230c0846d17dfdaa103494;p=dealii.git Fix compilation warning. git-svn-id: https://svn.dealii.org/trunk@28849 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 2b8d6dd36a..3a5b84c092 100644 --- a/deal.II/include/deal.II/matrix_free/fe_evaluation.h +++ b/deal.II/include/deal.II/matrix_free/fe_evaluation.h @@ -3849,10 +3849,10 @@ namespace internal Assert (fe_eval.dof_values_initialized == true, internal::ExcAccessToUninitializedField()); - const unsigned int temp_size = fe_eval.dofs_per_cell > fe_eval.n_q_points ? - fe_eval.dofs_per_cell : fe_eval.n_q_points; - const unsigned int n_components = fe_eval.n_components; - const unsigned int dim = fe_eval.dimension; + const unsigned int temp_size = FEEval::dofs_per_cell > FEEval::n_q_points ? + FEEval::dofs_per_cell : FEEval::n_q_points; + const unsigned int n_components = FEEval::n_components; + const unsigned int dim = FEEval::dimension; for (unsigned int c=0; c fe_eval.n_q_points ? - fe_eval.dofs_per_cell : fe_eval.n_q_points; - const unsigned int n_components = fe_eval.n_components; - const unsigned int dim = fe_eval.dimension; + const unsigned int temp_size = FEEval::dofs_per_cell > FEEval::n_q_points ? + FEEval::dofs_per_cell : FEEval::n_q_points; + const unsigned int n_components = FEEval::n_components; + const unsigned int dim = FEEval::dimension; for (unsigned int c=0; c