]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Another set of unnecessary semicolons
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 3 Aug 2007 04:02:10 +0000 (04:02 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 3 Aug 2007 04:02:10 +0000 (04:02 +0000)
git-svn-id: https://svn.dealii.org/trunk@14896 0785d39b-7218-0410-832d-ea1e28bc413d

27 files changed:
tests/bits/christian_1.cc
tests/bits/denis_1.cc
tests/bits/error_estimator_01.cc
tests/bits/error_estimator_02.cc
tests/bits/point_difference_01.cc
tests/bits/point_difference_02.cc
tests/bits/point_value_01.cc
tests/bits/point_value_02.cc
tests/bits/step-12.cc
tests/bits/step-13.cc
tests/bits/step-14.cc
tests/bits/step-15.cc
tests/bits/step-4.cc
tests/bits/step-5.cc
tests/bits/step-6.cc
tests/bits/step-7.cc
tests/bits/step-9.cc
tests/fe/deformed_projection.h
tests/fe/fe_tools_test.cc
tests/fe/rt_approximation_01.cc
tests/hp/crash_17.cc
tests/hp/crash_17_compressed_set_sparsity.cc
tests/hp/crash_18.cc
tests/hp/crash_18_compressed_set_sparsity.cc
tests/hp/step-12.cc
tests/hp/step-4.cc
tests/hp/step-5.cc

index a5a6547fc2ca0994db227e062534f7fa567e6954..4b10ece30d245331d5a8d35c013c97629c17be04 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2005, 2006 by the deal.II authors and Christian Kamm
+//    Copyright (C) 2005, 2006, 2007 by the deal.II authors and Christian Kamm
 //
 //    This file is subject to QPL and may not be  distributed
 //    without copyright and license information. Please refer
@@ -87,10 +87,10 @@ DoFToolsEx::transfer(const DoFHandler<dim>& source_dof, const InVector& source_v
 class TestFunction : public Function<2>
 {
   public:
-    TestFunction() : Function<2>() {};
+    TestFunction() : Function<2>() {}
     virtual double value(const Point<2> &p,
            const unsigned int) const
-    { return std::sin(3.14159*p(0))*std::sin(3.14159*p(1)); };
+    { return std::sin(3.14159*p(0))*std::sin(3.14159*p(1)); }
 };
 
 int main()
@@ -119,7 +119,8 @@ int main()
   Triangulation<2>::active_cell_iterator it = both_tria.begin_active();
   it->set_refine_flag();
   (++it)->set_refine_flag();
-  for(int i = 1; i < 8; ++i, ++it);
+  for(int i = 1; i < 8; ++i, ++it)
+    ;
   it->set_coarsen_flag();
   (++it)->set_coarsen_flag();
   (++it)->set_coarsen_flag();
index d299416e393275a5e52edb0ded2901ee1d804339..4bc104aaa3bd0ae050b112847e90246c339081f2 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2003, 2004, 2005 by the deal.II authors
+//    Copyright (C) 2003, 2004, 2005, 2007 by the deal.II authors
 //
 //    This file is subject to QPL and may not be  distributed
 //    without copyright and license information. Please refer
@@ -49,7 +49,7 @@ class F : public Function<2>
         r = std::sqrt( x*x + y*y );
         return 0.5 * ( 1 - std::tanh( ( r - 0.5 )
                                  /( 2*M_SQRT2 * delta ) ) ) ;
-      };
+      }
 };
 
 
index f72040e7eba92e647adab5eef20fd7358c1b37c2..2764b02c07e277f524be81cbb3a64878044633a9 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2004 by the deal.II authors
+//    Copyright (C) 2004, 2007 by the deal.II authors
 //
 //    This file is subject to QPL and may not be  distributed
 //    without copyright and license information. Please refer
@@ -38,16 +38,16 @@ template<int dim>
 class MySquareFunction : public Function<dim>
 {
   public:
-    MySquareFunction () : Function<dim>(2) {};
+    MySquareFunction () : Function<dim>(2) {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component) const
-      {        return (component+1)*p.square(); };
+      {        return (component+1)*p.square(); }
     
     virtual void   vector_value (const Point<dim>   &p,
                                 Vector<double>     &values) const
       { values(0) = value(p,0);
-       values(1) = value(p,1); };
+       values(1) = value(p,1); }
 };
 
 
index 6e938f45cb36f261ff4a0c637c8691fe58cab0fe..aa3403d2860557512b05b8c01ffed452e80deb37 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2004, 2006 by the deal.II authors
+//    Copyright (C) 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
@@ -38,16 +38,16 @@ template<int dim>
 class MySquareFunction : public Function<dim>
 {
   public:
-    MySquareFunction () : Function<dim>(2) {};
+    MySquareFunction () : Function<dim>(2) {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component) const
-      {        return (component+1)*p.square(); };
+      {        return (component+1)*p.square(); }
     
     virtual void   vector_value (const Point<dim>   &p,
                                 Vector<double>     &values) const
       { values(0) = value(p,0);
-       values(1) = value(p,1); };
+       values(1) = value(p,1); }
 };
 
 
index f23429b6c309f6be2f87130c1aeb30e16ca4d1b2..9197ef7fd731178e27d69128598d868899fedb26 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2004 by the deal.II authors
+//    Copyright (C) 2004, 2007 by the deal.II authors
 //
 //    This file is subject to QPL and may not be  distributed
 //    without copyright and license information. Please refer
@@ -40,11 +40,11 @@ class MySquareFunction : public Function<dim>
   public:
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component) const
-      {        return (component+1)*p.square()+1; };
+      {        return (component+1)*p.square()+1; }
     
     virtual void   vector_value (const Point<dim>   &p,
                                 Vector<double>     &values) const
-      { values(0) = value(p,0); };
+      { values(0) = value(p,0); }
 };
 
 
@@ -54,11 +54,11 @@ class MyExpFunction : public Function<dim>
   public:
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component) const
-      {        return std::exp (p(0)); };
+      {        return std::exp (p(0)); }
     
     virtual void   vector_value (const Point<dim>   &p,
                                 Vector<double>     &values) const
-      { values(0) = value(p,0); };
+      { values(0) = value(p,0); }
 };
 
 
index 6163cc0794ad575b2b6302e5219a9da9e6ea282b..47ae3a4f634da2cfd2d1ddc9b5d354baebd72dcc 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2004 by the deal.II authors
+//    Copyright (C) 2004, 2007 by the deal.II authors
 //
 //    This file is subject to QPL and may not be  distributed
 //    without copyright and license information. Please refer
@@ -44,11 +44,11 @@ class MySquareFunction : public Function<dim>
   public:
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component) const
-      {        return (component+1)*p.square()+1; };
+      {        return (component+1)*p.square()+1; }
     
     virtual void   vector_value (const Point<dim>   &p,
                                 Vector<double>     &values) const
-      { values(0) = value(p,0); };
+      { values(0) = value(p,0); }
 };
 
 
@@ -58,11 +58,11 @@ class MyExpFunction : public Function<dim>
   public:
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component) const
-      {        return std::exp (p(0)); };
+      {        return std::exp (p(0)); }
     
     virtual void   vector_value (const Point<dim>   &p,
                                 Vector<double>     &values) const
-      { values(0) = value(p,0); };
+      { values(0) = value(p,0); }
 };
 
 
index 6ced721ccc019760ae91b52b270402e3de409b02..16dd19e73eb6d2e6489d7d2ff2946da94ce3a553 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2004, 2006 by the deal.II authors
+//    Copyright (C) 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
@@ -39,11 +39,11 @@ class MySquareFunction : public Function<dim>
   public:
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component) const
-      {        return (component+1)*p.square()+1; };
+      {        return (component+1)*p.square()+1; }
     
     virtual void   vector_value (const Point<dim>   &p,
                                 Vector<double>     &values) const
-      { values(0) = value(p,0); };
+      { values(0) = value(p,0); }
 };
 
 
@@ -53,11 +53,11 @@ class MyExpFunction : public Function<dim>
   public:
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component) const
-      {        return std::exp (p(0)); };
+      {        return std::exp (p(0)); }
     
     virtual void   vector_value (const Point<dim>   &p,
                                 Vector<double>     &values) const
-      { values(0) = value(p,0); };
+      { values(0) = value(p,0); }
 };
 
 
index 073d324e18faeb37a1e5b691110fa4642fd57763..74e0a429cc72a84815b6e54cb0e0e5f2090243f8 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2004, 2006 by the deal.II authors
+//    Copyright (C) 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
@@ -40,11 +40,11 @@ class MySquareFunction : public Function<dim>
   public:
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component) const
-      {        return (component+1)*p.square()+1; };
+      {        return (component+1)*p.square()+1; }
     
     virtual void   vector_value (const Point<dim>   &p,
                                 Vector<double>     &values) const
-      { values(0) = value(p,0); };
+      { values(0) = value(p,0); }
 };
 
 
@@ -54,11 +54,11 @@ class MyExpFunction : public Function<dim>
   public:
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component) const
-      {        return std::exp (p(0)); };
+      {        return std::exp (p(0)); }
     
     virtual void   vector_value (const Point<dim>   &p,
                                 Vector<double>     &values) const
-      { values(0) = value(p,0); };
+      { values(0) = value(p,0); }
 };
 
 
index 2d903fc3a6fb1f5c453b17aea9a2f50d234674a2..4f3fd5e36bc65f71f48d32879d50fc386e6dec7c 100644 (file)
@@ -2,7 +2,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
@@ -71,7 +71,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 b3b319652edbd85b5bf96b567b2be96a64d403d9..9370f61740638148aa2a3348d9013532c16c101a 100644 (file)
@@ -2,7 +2,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
@@ -650,7 +650,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;
@@ -675,7 +675,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 aa2a4264cd92909a1145bd3637b01b2af436a02e..e09c4038491e30084ae09ae7f2021eee2ccbb83f 100644 (file)
@@ -2,7 +2,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
@@ -881,7 +881,7 @@ namespace Data
   template <class Traits, int dim>
   struct SetUp : public SetUpBase<dim>
   {
-      SetUp () {};
+      SetUp () {}
 
       virtual
       const Function<dim> &  get_boundary_values () const;
@@ -935,7 +935,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;
@@ -945,7 +945,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;
@@ -1017,7 +1017,7 @@ namespace Data
       class RightHandSide : public ConstantFunction<dim>
       {
        public:
-         RightHandSide () : ConstantFunction<dim> (1.) {};
+         RightHandSide () : ConstantFunction<dim> (1.) {}
       };
       
       static
index e307b9be99f43ae8618cc7e8008436d4fa8bbdc9..0bafc90b6f7124e19a5867f98ec0d1ca9ee7aece 100644 (file)
@@ -2,7 +2,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
@@ -69,7 +69,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 d879adf51a50d8cad56bdb73a010ab7cbfbfecfc..fc268364e6ecd0313f1e55cd027026f188b893aa 100644 (file)
@@ -2,7 +2,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
@@ -79,7 +79,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;
@@ -91,7 +91,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 426a8061f715fedf8d08e67b9cb405f316d0b001..ab43e72053fa3b604f2868368fab483a608dedb5 100644 (file)
@@ -2,7 +2,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
@@ -81,7 +81,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 67a80a0c330155d5683147074366e4545a850ff2..8187b768c44eb03c55475f531fe9dc171e7d9d17 100644 (file)
@@ -2,7 +2,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
@@ -96,7 +96,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 52131097eba2061e1cdaaad11a1342dea035ed6c..c99100592e9e1758c605b5635c7ce2f3c744689c 100644 (file)
@@ -2,7 +2,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
@@ -91,7 +91,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;
@@ -143,7 +143,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 9b5dfba6703da3aef7d9ab27232d37a7b9d99c82..ccf4a412ed425b067373d8fb5c6cf5d08371b885 100644 (file)
@@ -2,7 +2,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
@@ -105,7 +105,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;
     
@@ -153,7 +153,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;
@@ -211,7 +211,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 8a59af1583e0d153c6045038448ccd0a2e327e98..5b7ffa7228e1d241e658d20b891ee1ff2125eb8b 100644 (file)
@@ -2,7 +2,7 @@
 //    deformed_projection.h,v 1.3 2003/06/09 16:00:38 wolf Exp
 //    Version: 
 //
-//    Copyright (C) 2003, 2005, 2006 by the deal.II authors
+//    Copyright (C) 2003, 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
@@ -66,9 +66,9 @@ class TestMap1 : public Function<dim>
   public:
     TestMap1 (const unsigned int n_components) :
                    Function<dim> (n_components)
-      {};
+      {}
   
-    virtual ~TestMap1 () {};
+    virtual ~TestMap1 () {}
   
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
index 1c07e1c35e07cbf69418c9444b9e0ef7e0bf28e5..ac91eae28507ee16f77a2f0858c775842434b6c4 100644 (file)
@@ -4,7 +4,7 @@
 /*    fe_tools_test.cc,v 1.6 2003/04/09 15:49:54 wolf Exp       */
 /*    Version:                                           */
 /*                                                                */
-/*    Copyright (C) 1999, 2000, 2001, 2002, 2003, 2005 by the deal.II authors */
+/*    Copyright (C) 1999, 2000, 2001, 2002, 2003, 2005, 2007 by the deal.II authors */
 /*                                                                */
 /*    This file is subject to QPL and may not be  distributed     */
 /*    without copyright and license information. Please refer     */
@@ -41,8 +41,8 @@ const double pi=std::acos(-1.);
 class TestFunction: public Function<2>
 {
   public:
-    TestFunction() {};
-    virtual ~TestFunction() {};
+    TestFunction() {}
+    virtual ~TestFunction() {}
     
     virtual double value(const Point<2> &p,
                         const unsigned int component) const;
index e17dfe740e03599d35733636d44cbc332b98a448..c9da7bd5b650912beb5d48262bbae5d4d1c2a386 100644 (file)
@@ -2,7 +2,7 @@
 //    rt_approximation_01.cc,v 1.3 2003/06/09 16:00:38 wolf Exp
 //    Version: 
 //
-//    Copyright (C) 2003, 2005, 2006 by the deal.II authors
+//    Copyright (C) 2003, 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
@@ -73,9 +73,9 @@ class TestMap1 : public Function<dim>
   public:
     TestMap1 (const unsigned int n_components) :
                    Function<dim> (n_components)
-      {};
+      {}
   
-    virtual ~TestMap1 () {};
+    virtual ~TestMap1 () {}
   
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
@@ -129,9 +129,9 @@ class TestDef1 : public Function<dim>
     TestDef1 (const unsigned int n_components, const double ph) :
                    Function<dim> (n_components),
                    phi (ph)
-      {};
+      {}
     
-    virtual ~TestDef1 () {};
+    virtual ~TestDef1 () {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
@@ -184,9 +184,9 @@ class TestDef2 : public Function<dim>
     TestDef2 (const unsigned int n_components, const double sc) :
                    Function<dim> (n_components),
                    scale (sc)
-      {};
+      {}
     
-    virtual ~TestDef2 () {};
+    virtual ~TestDef2 () {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
@@ -236,9 +236,9 @@ class TestDef3 : public Function<dim>
     TestDef3 (const unsigned int n_components, const double sc) :
                    Function<dim> (n_components),
                    scale (sc)
-      {};
+      {}
     
-    virtual ~TestDef3 () {};
+    virtual ~TestDef3 () {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
@@ -294,9 +294,9 @@ class TestPoly : public Function<dim>
              }
            polys.push_back (Polynomials::Polynomial<double> (coeff));
          }
-      };
+      }
     
-    virtual ~TestPoly () {};
+    virtual ~TestPoly () {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int  component = 0) const;
index 358f268035e3d08ec43668101f107d5239f05918..b0851d484d21c57ff8df426a2843cb21cb003dca 100644 (file)
@@ -101,7 +101,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 d2feb304bcc8471f8bcbd33a674be1d87e33cdeb..adca9ef93c47f6afcaba376cdae7346257ca2083 100644 (file)
@@ -103,7 +103,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 7d07ef02f3649e3a137bd668c23344fd8042fe22..d176ae2daee285690d5d7d18cf15c8a4073f43bf 100644 (file)
@@ -104,7 +104,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 689168f5483cb5ca7f1ac99d158becc4b4b0b79d..3810f2f39f267db4402b47e2ef7b1cf831917a7a 100644 (file)
@@ -107,7 +107,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 8a82fce6152e28daf65033c740a4f4899aa4cd32..3c189ec5ff4bce257a2ce354774e53e1ae57e6bc 100644 (file)
@@ -2,7 +2,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
@@ -71,7 +71,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 74f6d8d125f667c6cc2df490c7055dea404b5854..1f1a31fa82516a2acc395527859295c4d55d4901 100644 (file)
@@ -2,7 +2,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
@@ -78,7 +78,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;
@@ -90,7 +90,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 aab179974bf85e2f969014e27fed74bf66c63c9e..226d222ce583aaf9c64a50a2ff17898a022f7e35 100644 (file)
@@ -2,7 +2,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
@@ -80,7 +80,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;

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.