]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Remove unnecessary semicolons that lead current gcc mainline versions to issue warnings
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Thu, 2 Aug 2007 22:36:15 +0000 (22:36 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Thu, 2 Aug 2007 22:36:15 +0000 (22:36 +0000)
git-svn-id: https://svn.dealii.org/trunk@14893 0785d39b-7218-0410-832d-ea1e28bc413d

13 files changed:
deal.II/deal.II/include/grid/filtered_iterator.h
tests/deal.II/boundaries.cc
tests/deal.II/derivative_approximation_2.cc
tests/deal.II/dof_test.cc
tests/deal.II/error_estimator.cc
tests/deal.II/grid_test.cc
tests/deal.II/matrices.cc
tests/deal.II/vectors_boundary_rhs_01.cc
tests/deal.II/vectors_boundary_rhs_02.cc
tests/deal.II/vectors_boundary_rhs_03.cc
tests/deal.II/vectors_point_source_01.cc
tests/deal.II/vectors_rhs_01.cc
tests/deal.II/vectors_rhs_03.cc

index 5c10346a9017bfa145b0b0403405cc95a6665110..d13a3e6b19fd304a6bf63d17e96ffad97bece3c4 100644 (file)
@@ -2,7 +2,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
@@ -626,7 +626,7 @@ class FilteredIterator : public BaseIterator
                                          * pointers to the base
                                          * class.
                                          */
-       virtual ~PredicateBase () {};
+       virtual ~PredicateBase () {}
 
                                         /**
                                          * Abstract function which in
index d7f963a7fd43c7fa8f3aecd8acd4639f6f78ae7d..0e16b5200bf3e24e4d828f4d46e0be3fd9775172 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2000, 2001, 2003, 2004, 2005 by the deal.II authors
+//    Copyright (C) 2000, 2001, 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
@@ -41,15 +41,15 @@ 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 100*(component+1)*p.square()*std::sin(p.square()); };
+      {        return 100*(component+1)*p.square()*std::sin(p.square()); }
     
     virtual void   vector_value (const Point<dim>   &p,
                                 Vector<double>     &values) const
-      { for (unsigned int d=0; d<this->n_components; ++d) values(d) = value(p,d); };
+      { for (unsigned int d=0; d<this->n_components; ++d) values(d) = value(p,d); }
 };
 
 
index 9e0fc6d92710608ced625ed001094d076ea30e4a..96f421a9699e38535743930bd112c8c5c7242683 100644 (file)
@@ -2,7 +2,7 @@
 //    
 //    Version: 
 //
-//    Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006 by the deal.II authors
+//    Copyright (C) 1998, 1999, 2000, 2001, 2002, 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
@@ -43,11 +43,11 @@ template<int dim>
 class MyFunction : public Function<dim>
 {
   public:
-    MyFunction () : Function<dim>() {};
+    MyFunction () : Function<dim>() {}
     
     virtual double value (const Point<dim>   &p,
                          const unsigned int) const
-      {        return sin(p[0]*a)*cos(p[1]*b); };
+      {        return sin(p[0]*a)*cos(p[1]*b); }
 };
 
 template <int dim>
index fe3ce4a717cf27529095669f5fe8ee04c2f13684..01169ff884d0e33bfa6d51e3720e658335a57a3d 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by the deal.II authors
+//    Copyright (C) 1998, 1999, 2000, 2001, 2002, 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
@@ -57,7 +57,7 @@ class Ball
          middle(i) += .5;
       
        return middle;
-      };
+      }
 
 
     virtual Point<dim>
@@ -72,7 +72,7 @@ class Ball
          middle(i) += .5;
       
        return middle;
-      };
+      }
 };
 
 
index d77b02d36fc819f751d3998f1f5d3fd796834486..99252906e5cbba48f5a5d2050896234878dd1848 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2000, 2001, 2003, 2004 by the deal.II authors
+//    Copyright (C) 2000, 2001, 2003, 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 9cc75ad5eb848770379186da26236dd71d4625bd..eb405a5ac8cf57ff7e6cf24f907ab6938a1d7bea 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by the deal.II authors
+//    Copyright (C) 1998, 1999, 2000, 2001, 2002, 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 Ball :
        middle(i) += .5;
       
       return middle;
-    };
+    }
 
 
     virtual Point<dim>
@@ -63,7 +63,7 @@ class Ball :
        middle(i) += .5;
       
       return middle;
-    };
+    }
 };
 
 
index dcb17c0b9bec9ca0518f3f55ec4d6173b8157c22..2592e86764295091192114be13897355922ac95f 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2000, 2001, 2003, 2004 by the deal.II authors
+//    Copyright (C) 2000, 2001, 2003, 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
@@ -41,16 +41,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 db8e0baa4241b5917a4a8bcdb1da0ba41993be1f..20bc553f690a95c96487950e45ebb2d45c37430a 100644 (file)
@@ -43,18 +43,18 @@ 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
       {
        for (unsigned int d=0; d<dim; ++d)
          values(d) = value(p,d);
-      };
+      }
 };
 
 
index 129b57e0173c9336c5a3ab7a1c6681dbde39fda4..d1dfdf97ff98e65ce46c3ecebac1dd42731046bb 100644 (file)
@@ -45,18 +45,18 @@ template<int dim>
 class MySquareFunction : public Function<dim>
 {
   public:
-    MySquareFunction () : Function<dim>(dim) {};
+    MySquareFunction () : Function<dim>(dim) {}
     
     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
       {
        for (unsigned int d=0; d<dim; ++d)
          values(d) = value(p,d);
-      };
+      }
 };
 
 
index d7ea83d14faf3c7e42cfc7ad1cc19e5b3379dade..9333fd7553d4e884dc7cf0e4605ce43d80dbd1ed 100644 (file)
@@ -44,17 +44,17 @@ template<int dim>
 class MySquareFunction : public Function<dim>
 {
   public:
-    MySquareFunction () : Function<dim>(1) {};
+    MySquareFunction () : Function<dim>(1) {}
     
     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);
-      };
+      }
 };
 
 
index 413e1904f2709f18c908c78f5c71d3dd64870097..686f09942496eb9200cd855d499c293fcaaccaba 100644 (file)
@@ -44,15 +44,15 @@ template<int dim>
 class MySquareFunction : public Function<dim>
 {
   public:
-    MySquareFunction () : Function<dim>(1) {};
+    MySquareFunction () : Function<dim>(1) {}
     
     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(0) = value(p,0); }
 };
 
 
index fa85e9b77b5746502c241e88f812aea6aeadd02f..e7b69e353064217f8946c32404e42c70e35e8555 100644 (file)
@@ -43,16 +43,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 2223d1411ac65e63d24c9469f16b1f576b990d5d..e707f0713d4ef1a6c35151b233233ef8f65dcbef 100644 (file)
@@ -44,15 +44,15 @@ template<int dim>
 class MySquareFunction : public Function<dim>
 {
   public:
-    MySquareFunction () : Function<dim>(1) {};
+    MySquareFunction () : Function<dim>(1) {}
     
     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(0) = value(p,0); }
 };
 
 

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.