]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Remove more unnecessary semicolons that the most recent gcc wants about.
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Sat, 7 Apr 2007 01:25:52 +0000 (01:25 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Sat, 7 Apr 2007 01:25:52 +0000 (01:25 +0000)
git-svn-id: https://svn.dealii.org/trunk@14619 0785d39b-7218-0410-832d-ea1e28bc413d

16 files changed:
deal.II/examples/step-12/step-12.cc
deal.II/examples/step-13/step-13.cc
deal.II/examples/step-14/step-14.cc
deal.II/examples/step-15/step-15.cc
deal.II/examples/step-20/step-20.cc
deal.II/examples/step-21/step-21.cc
deal.II/examples/step-23/step-23.cc
deal.II/examples/step-24/step-24.cc
deal.II/examples/step-25/step-25.cc
deal.II/examples/step-27/step-27.cc
deal.II/examples/step-4/step-4.cc
deal.II/examples/step-5/step-5.cc
deal.II/examples/step-6/step-6.cc
deal.II/examples/step-7/step-7.cc
deal.II/examples/step-9/step-9.cc
deal.II/lac/include/lac/solver_gmres.h

index 79e264e348c935b283f5545040c398b70c1efa2b..6779b9555a0fda0f15b7c56ec410b0da9edb0018 100644 (file)
@@ -4,7 +4,7 @@
 /*    $Id$       */
 /*    Version: $Name$                                          */
 /*                                                                */
-/*    Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors */
+/*    Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors */
 /*                                                                */
 /*    This file is subject to QPL and may not be  distributed     */
 /*    without copyright and license information. Please refer     */
@@ -138,7 +138,7 @@ template <int dim>
 class Beta
 {
   public:
-    Beta () {};
+    Beta () {}
     void value_list (const std::vector<Point<dim> > &points,
                     std::vector<Point<dim> > &values) const;
 };
index d78afc5302bc62f550af1a08c8c6b4d58e045193..9a482fb02f6013dd72ea053c52eeed402bb19e2b 100644 (file)
@@ -4,7 +4,7 @@
 /*    $Id$       */
 /*    Version: $Name$                                          */
 /*                                                                */
-/*    Copyright (C) 2001, 2002, 2003, 2004, 2006 by the deal.II authors */
+/*    Copyright (C) 2001, 2002, 2003, 2004, 2006, 2007 by the deal.II authors */
 /*                                                                */
 /*    This file is subject to QPL and may not be  distributed     */
 /*    without copyright and license information. Please refer     */
@@ -1793,7 +1793,7 @@ template <int dim>
 class Solution : public Function<dim>
 {
   public:
-    Solution () : Function<dim> () {};
+    Solution () : Function<dim> () {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component) const;
@@ -1818,7 +1818,7 @@ template <int dim>
 class RightHandSide : public Function<dim>
 {
   public:
-    RightHandSide () : Function<dim> () {};
+    RightHandSide () : Function<dim> () {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component) const;
index 72dae09d152a33d1055174fa78be840d26039164..e20fabe72669067827356f80b692fcb271bb7d91 100644 (file)
@@ -4,7 +4,7 @@
 /*    $Id$       */
 /*    Version: $Name$                                          */
 /*                                                                */
-/*    Copyright (C) 2002, 2003, 2004, 2005, 2006 by the deal.II authors */
+/*    Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors */
 /*                                                                */
 /*    This file is subject to QPL and may not be  distributed     */
 /*    without copyright and license information. Please refer     */
@@ -1345,7 +1345,7 @@ namespace Data
   template <class Traits, int dim>
   struct SetUp : public SetUpBase<dim>
   {
-      SetUp () {};
+      SetUp () {}
 
       virtual
       const Function<dim> &  get_boundary_values () const;
@@ -1411,7 +1411,7 @@ namespace Data
       class BoundaryValues : public Function<dim>
       {
        public:
-         BoundaryValues () : Function<dim> () {};
+         BoundaryValues () : Function<dim> () {}
          
          virtual double value (const Point<dim>   &p,
                                const unsigned int  component) const;
@@ -1421,7 +1421,7 @@ namespace Data
       class RightHandSide : public Function<dim>
       {
        public:
-         RightHandSide () : Function<dim> () {};
+         RightHandSide () : Function<dim> () {}
          
          virtual double value (const Point<dim>   &p,
                                const unsigned int  component) const;
@@ -1525,7 +1525,7 @@ namespace Data
       class RightHandSide : public ConstantFunction<dim>
       {
        public:
-         RightHandSide () : ConstantFunction<dim> (1.) {};
+         RightHandSide () : ConstantFunction<dim> (1.) {}
       };
       
                                       // Finally a function to
index beab3093ac02741a78476afc50fa46c3758f3a87..520133f458f0e791ddfe138c75a326955438ef6e 100644 (file)
@@ -4,7 +4,7 @@
 /*    $Id$       */
 /*    Version: $Name$                                          */
 /*                                                                */
-/*    Copyright (C) 2002, 2003, 2004, 2006 by the deal.II authors                   */
+/*    Copyright (C) 2002, 2003, 2004, 2006, 2007 by the deal.II authors                   */
 /*                                                                */
 /*    This file is subject to QPL and may not be  distributed     */
 /*    without copyright and license information. Please refer     */
@@ -123,7 +123,7 @@ double gradient_power (const Tensor<1,dim> &v,
 class InitializationValues : public Function<1> 
 {
   public:
-    InitializationValues () : Function<1>() {};
+    InitializationValues () : Function<1>() {}
     
     virtual double value (const Point<1>     &p,
                          const unsigned int  component = 0) const;
index 8032e2b17fdb23de5a74dca8627d3fe632bb3bdf..4dbb7c923e499eee778af34c0238cd6bfac3c98b 100644 (file)
@@ -4,7 +4,7 @@
 /*    $Id$       */
 /*    Version: $Name$                                          */
 /*                                                                */
-/*    Copyright (C) 2005, 2006 by the deal.II authors */
+/*    Copyright (C) 2005, 2006, 2007 by the deal.II authors */
 /*                                                                */
 /*    This file is subject to QPL and may not be  distributed     */
 /*    without copyright and license information. Please refer     */
@@ -154,7 +154,7 @@ template <int dim>
 class RightHandSide : public Function<dim> 
 {
   public:
-    RightHandSide () : Function<dim>(1) {};
+    RightHandSide () : Function<dim>(1) {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
@@ -166,7 +166,7 @@ template <int dim>
 class PressureBoundaryValues : public Function<dim> 
 {
   public:
-    PressureBoundaryValues () : Function<dim>(1) {};
+    PressureBoundaryValues () : Function<dim>(1) {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
@@ -177,7 +177,7 @@ template <int dim>
 class ExactSolution : public Function<dim> 
 {
   public:
-    ExactSolution () : Function<dim>(dim+1) {};
+    ExactSolution () : Function<dim>(dim+1) {}
     
     virtual void vector_value (const Point<dim> &p, 
                               Vector<double>   &value) const;
index 2f9a8c401dff4c0054de88adc216b4b57c58ccbb..c6b46692bdbe0a16f5f2b644a6393f1b9b8136a4 100644 (file)
@@ -4,7 +4,7 @@
 /*    $Id$       */
 /*    Version: $Name$                                          */
 /*                                                                */
-/*    Copyright (C) 2006 by the deal.II authors */
+/*    Copyright (C) 2006, 2007 by the deal.II authors */
 /*                                                                */
 /*    This file is subject to QPL and may not be  distributed     */
 /*    without copyright and license information. Please refer     */
@@ -150,7 +150,7 @@ template <int dim>
 class PressureRightHandSide : public Function<dim> 
 {
   public:
-    PressureRightHandSide () : Function<dim>(1) {};
+    PressureRightHandSide () : Function<dim>(1) {}
     
     virtual double value (const Point<dim>   &p,
                           const unsigned int  component = 0) const;
@@ -175,7 +175,7 @@ template <int dim>
 class PressureBoundaryValues : public Function<dim> 
 {
   public:
-    PressureBoundaryValues () : Function<dim>(1) {};
+    PressureBoundaryValues () : Function<dim>(1) {}
     
     virtual double value (const Point<dim>   &p,
                           const unsigned int  component = 0) const;
@@ -205,7 +205,7 @@ template <int dim>
 class SaturationBoundaryValues : public Function<dim> 
 {
   public:
-    SaturationBoundaryValues () : Function<dim>(1) {};
+    SaturationBoundaryValues () : Function<dim>(1) {}
     
     virtual double value (const Point<dim>   &p,
                           const unsigned int  component = 0) const;
@@ -249,7 +249,7 @@ template <int dim>
 class InitialValues : public Function<dim> 
 {
   public:
-    InitialValues () : Function<dim>(dim+2) {};
+    InitialValues () : Function<dim>(dim+2) {}
     
     virtual double value (const Point<dim>   &p,
                           const unsigned int  component = 0) const;
index 0c51915c63ceb3a58dfc18f7db67106e967bc801..5eca1070c2d29eb648c0b483cce8854c4db3c32e 100644 (file)
@@ -206,7 +206,7 @@ template <int dim>
 class InitialValuesU : public Function<dim> 
 {
   public:
-    InitialValuesU () : Function<dim>() {};
+    InitialValuesU () : Function<dim>() {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
@@ -217,7 +217,7 @@ template <int dim>
 class InitialValuesV : public Function<dim> 
 {
   public:
-    InitialValuesV () : Function<dim>() {};
+    InitialValuesV () : Function<dim>() {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
@@ -252,7 +252,7 @@ template <int dim>
 class RightHandSide : public Function<dim> 
 {
   public:
-    RightHandSide () : Function<dim>() {};
+    RightHandSide () : Function<dim>() {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
@@ -278,7 +278,7 @@ template <int dim>
 class BoundaryValuesU : public Function<dim> 
 {
   public:
-    BoundaryValuesU () : Function<dim>() {};
+    BoundaryValuesU () : Function<dim>() {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
@@ -291,7 +291,7 @@ template <int dim>
 class BoundaryValuesV : public Function<dim> 
 {
   public:
-    BoundaryValuesV () : Function<dim>() {};
+    BoundaryValuesV () : Function<dim>() {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
index a40176a4caf12674e8ba932cc4b9755ec9aa28a8..623f5de84ad0f0432e0cac8f0f858446cea405bd 100644 (file)
@@ -159,7 +159,7 @@ template <int dim>
 class InitialValuesP : public Function<dim> 
 {
   public:
-    InitialValuesP () : Function<dim>() {};
+    InitialValuesP () : Function<dim>() {}
     
     virtual double value (const Point<dim> &p,
                          const unsigned int  component = 0) const;
index 6562f8e4656a292a53d94c6ac13d19cd8dde7afd..a2da7cbb2a657b87053c1f28eeb07f907eb2bb8d 100644 (file)
@@ -1,5 +1,5 @@
 /* $Id$ */
-/*    Copyright (C) 2006 by the deal.II authors */
+/*    Copyright (C) 2006, 2007 by the deal.II authors */
 /*    Author: Ivan Christov, Wolfgang Bangerth, Texas A&M University, 2006 */
 /*                                                                */
 /*    This file is subject to QPL and may not be  distributed     */
@@ -185,7 +185,7 @@ class ExactSolution : public Function<dim>
 {
   public:
     ExactSolution (const unsigned int n_components = 1,
-                  const double time = 0.) : Function<dim>(n_components, time) {};
+                  const double time = 0.) : Function<dim>(n_components, time) {}
     virtual double value (const Point<dim> &p,
                          const unsigned int component = 0) const;
 };
index 062dda63cd9b85c0e6e98a99105a6a49e258be70..86c632da27f27da67c1c3153896b58a8ad8fc1f1 100644 (file)
@@ -98,7 +98,7 @@ template <int dim>
 class RightHandSide : public Function<dim>
 {
   public:
-    RightHandSide () : Function<dim> () {};
+    RightHandSide () : Function<dim> () {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component) const;
index b4bd016800e26856ae7dc9b7bcd1f06c8a5a6520..26407dac70afa20d26a6ed86cd54046c8c1ef827 100644 (file)
@@ -4,7 +4,7 @@
 /*    $Id$       */
 /*    Version: $Name$                                          */
 /*                                                                */
-/*    Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors */
+/*    Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors */
 /*                                                                */
 /*    This file is subject to QPL and may not be  distributed     */
 /*    without copyright and license information. Please refer     */
@@ -155,7 +155,7 @@ template <int dim>
 class RightHandSide : public Function<dim> 
 {
   public:
-    RightHandSide () : Function<dim>() {};
+    RightHandSide () : Function<dim>() {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
@@ -167,7 +167,7 @@ template <int dim>
 class BoundaryValues : public Function<dim> 
 {
   public:
-    BoundaryValues () : Function<dim>() {};
+    BoundaryValues () : Function<dim>() {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
index db38e900084953e3a32e86ac0a51298a212dae4f..125c2fe335e3e8147ad3fca7ea4f554704d30608 100644 (file)
@@ -4,7 +4,7 @@
 /*    $Id$       */
 /*    Version: $Name$                                          */
 /*                                                                */
-/*    Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2006 by the deal.II authors */
+/*    Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2006, 2007 by the deal.II authors */
 /*                                                                */
 /*    This file is subject to QPL and may not be  distributed     */
 /*    without copyright and license information. Please refer     */
@@ -129,7 +129,7 @@ template <int dim>
 class Coefficient : public Function<dim> 
 {
   public:
-    Coefficient ()  : Function<dim>() {};
+    Coefficient ()  : Function<dim>() {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
index c5aa8725f847f0543fd78ee09f5722e9f4dec074..d37c4e5d1020e490f531ae48e1ec3d5aebba7613 100644 (file)
@@ -4,7 +4,7 @@
 /*    $Id$       */
 /*    Version: $Name$                                          */
 /*                                                                */
-/*    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2006 by the deal.II authors */
+/*    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2006, 2007 by the deal.II authors */
 /*                                                                */
 /*    This file is subject to QPL and may not be  distributed     */
 /*    without copyright and license information. Please refer     */
@@ -167,7 +167,7 @@ template <int dim>
 class Coefficient : public Function<dim> 
 {
   public:
-    Coefficient () : Function<dim>() {};
+    Coefficient () : Function<dim>() {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
index 6a226f9568cf8682a1b3473090a0776614b2e369..ad3690a30a84a8d78aaeff6592c9a27b1a18058b 100644 (file)
@@ -4,7 +4,7 @@
 /*    $Id$       */
 /*    Version: $Name$                                          */
 /*                                                                */
-/*    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2006 by the deal.II authors */
+/*    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2006, 2007 by the deal.II authors */
 /*                                                                */
 /*    This file is subject to QPL and may not be  distributed     */
 /*    without copyright and license information. Please refer     */
@@ -232,7 +232,7 @@ class Solution : public Function<dim>,
                 protected SolutionBase<dim>
 {
   public:
-    Solution () : Function<dim>() {};
+    Solution () : Function<dim>() {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
@@ -365,7 +365,7 @@ class RightHandSide : public Function<dim>,
                      protected SolutionBase<dim>
 {
   public:
-    RightHandSide () : Function<dim>() {};
+    RightHandSide () : Function<dim>() {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
index 5cc0d7712df4af04701263118caf5bea7fc6fbb7..09ea49099860d76aaea54ea43293cf8032a9a1a3 100644 (file)
@@ -4,7 +4,7 @@
 /*    $Id$       */
 /*    Version: $Name$                                          */
 /*                                                                */
-/*    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2006 by the deal.II authors */
+/*    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2006, 2007 by the deal.II authors */
 /*                                                                */
 /*    This file is subject to QPL and may not be  distributed     */
 /*    without copyright and license information. Please refer     */
@@ -235,7 +235,7 @@ template <int dim>
 class AdvectionField : public TensorFunction<1,dim>
 {
   public:
-    AdvectionField () : TensorFunction<1,dim> () {};
+    AdvectionField () : TensorFunction<1,dim> () {}
     
     virtual Tensor<1,dim> value (const Point<dim> &p) const;
     
@@ -377,7 +377,7 @@ template <int dim>
 class RightHandSide : public Function<dim>
 {
   public:
-    RightHandSide () : Function<dim>() {};
+    RightHandSide () : Function<dim>() {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
@@ -459,7 +459,7 @@ template <int dim>
 class BoundaryValues : public Function<dim>
 {
   public:
-    BoundaryValues () : Function<dim>() {};
+    BoundaryValues () : Function<dim>() {}
 
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
index 4711fdeb5a84f99da3381026c8d176a329a1d0e1..ce8ad80c6362fe47f1a4611a802e59a1ebf173a7 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$
 //
-//    Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors
+//    Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors
 //
 //    This file is subject to QPL and may not be  distributed
 //    without copyright and license information. Please refer
@@ -334,7 +334,7 @@ class SolverFGMRES : public Solver<VECTOR>
                       const bool /*use_default_residual*/ = true)
                        :
                        max_basis_size(max_basis_size)
-         {};
+         {}
        
                                         /**
                                          * Maximum number of

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.