From: Matthias Maier Date: Wed, 24 Oct 2012 16:53:30 +0000 (+0000) Subject: Fix a typo introduced with r27140 X-Git-Tag: v8.0.0~1928 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0998b9dd674ae849762a44e5df13a2251e7a8d8b;p=dealii.git Fix a typo introduced with r27140 git-svn-id: https://svn.dealii.org/trunk@27196 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-29/step-29.cc b/deal.II/examples/step-29/step-29.cc index 759c670dde..183e15034a 100644 --- a/deal.II/examples/step-29/step-29.cc +++ b/deal.II/examples/step-29/step-29.cc @@ -810,9 +810,9 @@ namespace Step29 QGauss quadrature_formula(2); QGauss face_quadrature_formula(2); - const unsigned int n_q_point = quadrature_formula.size(), - n_face_q_points = face_quadrature_formula.size(), - dofs_per_cell = fe.dofs_per_cell; + const unsigned int n_q_points = quadrature_formula.size(), + n_face_q_points = face_quadrature_formula.size(), + dofs_per_cell = fe.dofs_per_cell; // The FEValues objects will // evaluate the shape functions for