From: wolf Date: Fri, 29 Apr 2005 20:59:47 +0000 (+0000) Subject: Remove a few unnecessary semicolons. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f87796ab416dd8a69bf57be0eec36b8802ec0870;p=dealii-svn.git Remove a few unnecessary semicolons. git-svn-id: https://svn.dealii.org/trunk@10587 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/numerics/matrices.all_dimensions.cc b/deal.II/deal.II/source/numerics/matrices.all_dimensions.cc index b6b7ea06ba..d5227f3728 100644 --- a/deal.II/deal.II/source/numerics/matrices.all_dimensions.cc +++ b/deal.II/deal.II/source/numerics/matrices.all_dimensions.cc @@ -184,12 +184,12 @@ MatrixTools::apply_boundary_values (const std::map &boundar // set matrix entry to zero matrix.global_entry(global_entry) = 0.; - }; - }; + } + } // preset solution vector solution(dof_number) = dof->second; - }; + } } @@ -504,13 +504,13 @@ MatrixTools::apply_boundary_values (const std::map &boundar // set matrix entry to zero matrix.block(block_row,block_index.first).global_entry(global_entry) = 0.; - }; - }; - }; + } + } + } // preset solution vector solution.block(block_index.first)(block_index.second) = dof->second; - }; + } } @@ -638,7 +638,7 @@ apply_boundary_values (const std::map &boundary_values, // preset solution vector solution(dof_number) = dof->second; - }; + } } #endif