From: Wolfgang Bangerth Date: Mon, 7 Apr 2003 15:37:13 +0000 (+0000) Subject: Remove stray semicolons. X-Git-Tag: v8.0.0~16750 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e21134db04fcac050357b3a26de7e140348ec3ad;p=dealii.git Remove stray semicolons. git-svn-id: https://svn.dealii.org/trunk@7360 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/block_sparse_matrix_ez.h b/deal.II/lac/include/lac/block_sparse_matrix_ez.h index 327cefc633..b5f3027e0b 100644 --- a/deal.II/lac/include/lac/block_sparse_matrix_ez.h +++ b/deal.II/lac/include/lac/block_sparse_matrix_ez.h @@ -334,7 +334,7 @@ BlockSparseMatrixEZ::block (const unsigned int row, Assert (column::block (const unsigned int row, Assert (column::m () const { return n_rows(); -}; +} @@ -368,7 +368,7 @@ unsigned int BlockSparseMatrixEZ::n () const { return n_cols(); -}; +} @@ -385,7 +385,7 @@ BlockSparseMatrixEZ::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::add (const unsigned int i, block(row_index.first,col_index.first).add (row_index.second, col_index.second, value); -}; +} template @@ -424,7 +424,7 @@ BlockSparseMatrixEZ::vmult (BlockVector &dst, block(row,col).vmult_add (dst.block(row), src.block(col)); }; -}; +} @@ -446,7 +446,7 @@ BlockSparseMatrixEZ::vmult_add ( block(row,col).vmult_add (dst.block(row), src.block(col)); }; -}; +} @@ -471,7 +471,7 @@ BlockSparseMatrixEZ::Tvmult ( block(row,col).Tvmult_add (dst.block(col), src.block(row)); }; -}; +} @@ -493,7 +493,7 @@ BlockSparseMatrixEZ::Tvmult_add ( block(row,col).Tvmult_add (dst.block(col), src.block(row)); }; -}; +} #endif //__deal2__block_sparse_matrix_ez_h diff --git a/deal.II/lac/include/lac/block_sparse_matrix_ez.templates.h b/deal.II/lac/include/lac/block_sparse_matrix_ez.templates.h index 8043fa83c1..31dacb2e6a 100644 --- a/deal.II/lac/include/lac/block_sparse_matrix_ez.templates.h +++ b/deal.II/lac/include/lac/block_sparse_matrix_ez.templates.h @@ -25,7 +25,7 @@ BlockSparseMatrixEZ::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 &m) for (unsigned int c=0; c::BlockSparseMatrixEZ ( row_indices(m.row_indices), column_indices(m.column_indices), blocks(m.blocks) -{}; +{} @@ -97,7 +97,7 @@ BlockSparseMatrixEZ::reinit (const unsigned int rows, row_indices.reinit(rows, 0); column_indices.reinit(cols, 0); blocks.reinit(rows, cols); -}; +} @@ -108,7 +108,7 @@ BlockSparseMatrixEZ::clear () row_indices.reinit(0, 0); column_indices.reinit(0, 0); blocks.reinit(0, 0); -}; +} @@ -121,7 +121,7 @@ BlockSparseMatrixEZ::empty () const if (block(r,c).empty () == false) return false; return true; -}; +} @@ -162,7 +162,7 @@ BlockSparseMatrixEZ::collect_sizes () // finally initialize the row // indices with this array column_indices.reinit (col_sizes); -}; +}