From e3c81ba3bfee07e031c943ab331a733412059625 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Mon, 15 Mar 2010 14:33:14 +0000 Subject: [PATCH] fix reference type git-svn-id: https://svn.dealii.org/trunk@20827 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/mesh_worker_02.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/deal.II/mesh_worker_02.cc b/tests/deal.II/mesh_worker_02.cc index 382c220c70..72feafdff4 100644 --- a/tests/deal.II/mesh_worker_02.cc +++ b/tests/deal.II/mesh_worker_02.cc @@ -70,7 +70,7 @@ template void MatrixIntegrator::bdry(MeshWorker::DoFInfo& dinfo, typename MeshWorker::IntegrationWorker::FaceInfo& info) { - const FEFaceValuesBase& fe = info.fe_values(); + const FEValuesBase& fe = info.fe_values(); FullMatrix& local_matrix = dinfo.matrix(0).matrix; const unsigned int deg = fe.get_fe().tensor_degree(); @@ -92,8 +92,8 @@ void MatrixIntegrator::face(MeshWorker::DoFInfo& dinfo1, typename MeshWorker::IntegrationWorker::FaceInfo& info1, typename MeshWorker::IntegrationWorker::FaceInfo& info2) { - const FEFaceValuesBase& fe1 = info1.fe_values(); - const FEFaceValuesBase& fe2 = info2.fe_values(); + const FEValuesBase& fe1 = info1.fe_values(); + const FEValuesBase& fe2 = info2.fe_values(); FullMatrix& matrix_v1u1 = dinfo1.matrix(0, false).matrix; FullMatrix& matrix_v1u2 = dinfo1.matrix(0, true).matrix; FullMatrix& matrix_v2u1 = dinfo2.matrix(0, true).matrix; -- 2.39.5