From: deal Date: Mon, 16 Dec 2002 21:24:08 +0000 (+0000) Subject: icc7 wants to see some initializers. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e52590f8641b6e8bad68c3f12479e0ed6809936;p=dealii-svn.git icc7 wants to see some initializers. git-svn-id: https://svn.dealii.org/trunk@6833 0785d39b-7218-0410-832d-ea1e28bc413d --- 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 () {}