]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Remove stray semicolons.
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Mon, 7 Apr 2003 15:37:13 +0000 (15:37 +0000)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Mon, 7 Apr 2003 15:37:13 +0000 (15:37 +0000)
git-svn-id: https://svn.dealii.org/trunk@7360 0785d39b-7218-0410-832d-ea1e28bc413d

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

index 327cefc633092b5acb35ff92f3e5f7721d4bdd24..b5f3027e0bd8c6a761772e52f9cc632561dbb497 100644 (file)
@@ -334,7 +334,7 @@ BlockSparseMatrixEZ<Number>::block (const unsigned int row,
   Assert (column<n_block_cols(), ExcIndexRange (column, 0, n_block_cols()));
   
   return blocks[row][column];
-};
+}
 
 
 
@@ -348,7 +348,7 @@ BlockSparseMatrixEZ<Number>::block (const unsigned int row,
   Assert (column<n_block_cols(), ExcIndexRange (column, 0, n_block_cols()));
   
   return blocks[row][column];
-};
+}
 
 
 
@@ -358,7 +358,7 @@ unsigned int
 BlockSparseMatrixEZ<Number>::m () const
 {
   return n_rows();
-};
+}
 
 
 
@@ -368,7 +368,7 @@ unsigned int
 BlockSparseMatrixEZ<Number>::n () const
 {
   return n_cols();
-};
+}
 
 
 
@@ -385,7 +385,7 @@ BlockSparseMatrixEZ<Number>::set (const unsigned int i,
   block(row_index.first,col_index.first).set (row_index.second,
                                              col_index.second,
                                              value);
-};
+}
 
 
 
@@ -402,7 +402,7 @@ BlockSparseMatrixEZ<Number>::add (const unsigned int i,
   block(row_index.first,col_index.first).add (row_index.second,
                                              col_index.second,
                                              value);
-};
+}
 
 
 template <typename Number>
@@ -424,7 +424,7 @@ BlockSparseMatrixEZ<Number>::vmult (BlockVector<somenumber>       &dst,
        block(row,col).vmult_add (dst.block(row),
                                  src.block(col));
     };
-};
+}
 
 
 
@@ -446,7 +446,7 @@ BlockSparseMatrixEZ<Number>::vmult_add (
        block(row,col).vmult_add (dst.block(row),
                                  src.block(col));
     };
-};
+}
 
 
 
@@ -471,7 +471,7 @@ BlockSparseMatrixEZ<Number>::Tvmult (
        block(row,col).Tvmult_add (dst.block(col),
                                   src.block(row));
     };
-};
+}
 
 
 
@@ -493,7 +493,7 @@ BlockSparseMatrixEZ<Number>::Tvmult_add (
        block(row,col).Tvmult_add (dst.block(col),
                                   src.block(row));
     };
-};
+}
 
 
 #endif //__deal2__block_sparse_matrix_ez_h
index 8043fa83c11ab2c95e1c46a4502fad0fed772e9e..31dacb2e6aac553e3dd37f12d0f6b1f6dbd01da0 100644 (file)
@@ -25,7 +25,7 @@ BlockSparseMatrixEZ<number>::BlockSparseMatrixEZ ()
                 :
                row_indices (0),
                column_indices (0)
-{};
+{}
 
 
 
@@ -36,7 +36,7 @@ BlockSparseMatrixEZ (const unsigned int rows,
                 :
                row_indices (rows),
                column_indices (cols)
-{};
+{}
 
 
 
@@ -73,7 +73,7 @@ operator = (const BlockSparseMatrixEZ<number> &m)
     for (unsigned int c=0; c<n_block_cols(); ++c)
       block(r,c) = m.block(r,c);
   return *this;
-};
+}
 
  
 
@@ -85,7 +85,7 @@ BlockSparseMatrixEZ<number>::BlockSparseMatrixEZ (
                row_indices(m.row_indices),
                column_indices(m.column_indices),
                blocks(m.blocks)
-{};
+{}
 
  
 
@@ -97,7 +97,7 @@ BlockSparseMatrixEZ<number>::reinit (const unsigned int rows,
   row_indices.reinit(rows, 0);
   column_indices.reinit(cols, 0);
   blocks.reinit(rows, cols);  
-};
+}
 
 
 
@@ -108,7 +108,7 @@ BlockSparseMatrixEZ<number>::clear ()
   row_indices.reinit(0, 0);
   column_indices.reinit(0, 0);
   blocks.reinit(0, 0);  
-};
+}
 
 
 
@@ -121,7 +121,7 @@ BlockSparseMatrixEZ<number>::empty () const
       if (block(r,c).empty () == false)
        return false;
   return true;
-};
+}
 
 
 
@@ -162,7 +162,7 @@ BlockSparseMatrixEZ<number>::collect_sizes ()
                                   // finally initialize the row
                                   // indices with this array
   column_indices.reinit (col_sizes);
-};
+}
 
 
 

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.