]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Remove unnecessary semicolons.
authorwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Thu, 20 Feb 2003 15:59:20 +0000 (15:59 +0000)
committerwolf <wolf@0785d39b-7218-0410-832d-ea1e28bc413d>
Thu, 20 Feb 2003 15:59:20 +0000 (15:59 +0000)
git-svn-id: https://svn.dealii.org/trunk@7199 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/lac/include/lac/sparse_matrix_ez.h
deal.II/lac/include/lac/sparse_matrix_ez.templates.h

index 46dc2f89deed9d2f517391cd882d09801974efca..d744394ee459316aaf02053c63b8ceeee0df3e3b 100644 (file)
@@ -1130,7 +1130,7 @@ inline
 unsigned int SparseMatrixEZ<number>::m () const
 {
   return row_info.size();
-};
+}
 
 
 template <typename number>
@@ -1138,7 +1138,7 @@ inline
 unsigned int SparseMatrixEZ<number>::n () const
 {
   return n_columns;
-};
+}
 
 
 template <typename number>
@@ -1262,7 +1262,7 @@ void SparseMatrixEZ<number>::set (const unsigned int i,
   Assert (j<n(), ExcIndexRange(j,0,n()));
   Entry* entry = allocate(i,j);
   entry->value = value;
-};
+}
 
 
 
@@ -1276,7 +1276,7 @@ void SparseMatrixEZ<number>::add (const unsigned int i,
   Assert (j<n(), ExcIndexRange(j,0,n()));
   Entry* entry = allocate(i,j);
   entry->value += value;
-};
+}
 
 
 
index 954ee45a1709c7b14157fdf9b07d41b772fcc42b..b492c30fad8f3edcf97ab42adee237f00466af0e 100644 (file)
@@ -235,7 +235,7 @@ SparseMatrixEZ<number>::precondition_Jacobi (Vector<somenumber>       &dst,
       Assert (ri->diagonal != RowInfo::invalid_diagonal, ExcNoDiagonal());
       *dst_ptr = om * *src_ptr / data[ri->start + ri->diagonal].value;
     }
-};
+}
 
 
 
@@ -265,7 +265,7 @@ SparseMatrixEZ<number>::precondition_SOR (Vector<somenumber>       &dst,
       
       *dst_ptr = om * s / data[ri->start + ri->diagonal].value;
     }
-};
+}
 
 
 
@@ -297,7 +297,7 @@ SparseMatrixEZ<number>::precondition_TSOR (Vector<somenumber>       &dst,
       
       *dst_ptr = om * s / data[ri->start + ri->diagonal].value;
     }
-};
+}
 
 
 
@@ -345,7 +345,7 @@ SparseMatrixEZ<number>::precondition_SSOR (Vector<somenumber>       &dst,
        *dst_ptr -= om * data[i].value * dst(data[i].column);
       *dst_ptr /= data[rri->start + rri->diagonal].value;
      }
-};
+}
 
 
 

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.