From 0e52590f8641b6e8bad68c3f12479e0ed6809936 Mon Sep 17 00:00:00 2001 From: deal Date: Mon, 16 Dec 2002 21:24:08 +0000 Subject: [PATCH] icc7 wants to see some initializers. git-svn-id: https://svn.dealii.org/trunk@6833 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-12/step-12.cc | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/deal.II/examples/step-12/step-12.cc b/deal.II/examples/step-12/step-12.cc index 7084872178..848371e646 100644 --- a/deal.II/examples/step-12/step-12.cc +++ b/deal.II/examples/step-12/step-12.cc @@ -223,7 +223,7 @@ template class DGTransportEquation { public: - DGTransportEquation() {}; + DGTransportEquation(); void assemble_cell_term(const FEValues& fe_v, FullMatrix &u_v_matrix, @@ -251,6 +251,15 @@ class DGTransportEquation }; +template +DGTransportEquation::DGTransportEquation () + : + beta_function (), + rhs_function (), + boundary_function () +{}; + + // @sect4{Function: assemble_cell_term} // // The ``assemble_cell_term'' @@ -613,12 +622,17 @@ class DGMethod template -DGMethod::DGMethod () : +DGMethod::DGMethod () + : + mapping (), // Change here for DG // methods of // different degrees. fe (1), - dof_handler (triangulation) + dof_handler (triangulation), + quadrature (), + face_quadrature (), + dg () {} -- 2.39.5