]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
icc7 wants to see some initializers.
authordeal <deal@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 16 Dec 2002 21:24:08 +0000 (21:24 +0000)
committerdeal <deal@0785d39b-7218-0410-832d-ea1e28bc413d>
Mon, 16 Dec 2002 21:24:08 +0000 (21:24 +0000)
git-svn-id: https://svn.dealii.org/trunk@6833 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/examples/step-12/step-12.cc

index 70848721781a7fb5cb12748ac1bff20d4cfbd867..848371e646da8c557b2ce4d4bed46cc57c536bc1 100644 (file)
@@ -223,7 +223,7 @@ template <int dim>
 class DGTransportEquation
 {
   public:
-    DGTransportEquation() {};
+    DGTransportEquation();
 
     void assemble_cell_term(const FEValues<dim>& fe_v,
                            FullMatrix<double> &u_v_matrix,
@@ -251,6 +251,15 @@ class DGTransportEquation
 };
 
 
+template <int dim>
+DGTransportEquation<dim>::DGTransportEquation ()
+               :
+               beta_function (),
+               rhs_function (),
+               boundary_function ()
+{};
+
+
                                 // @sect4{Function: assemble_cell_term}
                                 //
                                 // The ``assemble_cell_term''
@@ -613,12 +622,17 @@ class DGMethod
 
 
 template <int dim>
-DGMethod<dim>::DGMethod () :
+DGMethod<dim>::DGMethod ()
+               :
+               mapping (),
                                                 // Change here for DG
                                                 // methods of
                                                 // different degrees.
                 fe (1),
-               dof_handler (triangulation)
+               dof_handler (triangulation),
+               quadrature (),
+               face_quadrature (),
+               dg ()
 {}
 
 

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.