From 7acfd5fa264ed840117b1ace0ea9ab1a084832b5 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 20 Jan 2010 13:17:19 +0000 Subject: [PATCH] Use function<> objects rather than hard-coded names to represent operations. git-svn-id: https://svn.dealii.org/trunk@20398 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-38/step-38.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/deal.II/examples/step-38/step-38.cc b/deal.II/examples/step-38/step-38.cc index 6775d15115..91a3816862 100644 --- a/deal.II/examples/step-38/step-38.cc +++ b/deal.II/examples/step-38/step-38.cc @@ -512,9 +512,10 @@ void DGMethod::assemble_system () MeshWorker::AssemblingIntegrator , - Vector >, - DGIntegrator > - integrator(dg); + Vector > > + integrator(&DGIntegrator::cell, + &DGIntegrator::bdry, + &DGIntegrator::face); // First, we initialize the // quadrature formulae and the -- 2.39.5