From: Wolfgang Bangerth Date: Tue, 2 Dec 2003 00:57:25 +0000 (+0000) Subject: Remove some cruft that's a couple of years old. X-Git-Tag: v8.0.0~16000 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0264c7ebd275387954e8624f6727c650d37183a;p=dealii.git Remove some cruft that's a couple of years old. git-svn-id: https://svn.dealii.org/trunk@8216 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 779a02e646..91d9cb475d 100644 --- a/deal.II/deal.II/source/numerics/matrices.all_dimensions.cc +++ b/deal.II/deal.II/source/numerics/matrices.all_dimensions.cc @@ -103,11 +103,8 @@ MatrixTools::apply_boundary_values (const std::map &boundar = dof->second * matrix.diag_element(dof_number); else { - // use the SparseMatrix:: - // to work around a bug in - // egcs - matrix.SparseMatrix::set (dof_number, dof_number, - first_nonzero_diagonal_entry); + matrix.set (dof_number, dof_number, + first_nonzero_diagonal_entry); new_rhs = right_hand_side(dof_number) = dof->second * first_nonzero_diagonal_entry; };