From: Bruno Turcksin Date: Thu, 17 Oct 2013 20:41:18 +0000 (+0000) Subject: Delete unused variables in matrix_tools. X-Git-Tag: v8.1.0~578 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8082aa21bbca37a5e2b2437ec8e0d27db23053f;p=dealii.git Delete unused variables in matrix_tools. git-svn-id: https://svn.dealii.org/trunk@31291 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/numerics/matrix_tools.cc b/deal.II/source/numerics/matrix_tools.cc index 75d21fe9e8..054d623452 100644 --- a/deal.II/source/numerics/matrix_tools.cc +++ b/deal.II/source/numerics/matrix_tools.cc @@ -1271,12 +1271,6 @@ namespace MatrixCreator copy_data.dofs.resize(copy_data.dofs_per_cell); cell->get_dof_indices (copy_data.dofs); - const unsigned int max_dofs_per_cell = fe_collection.max_dofs_per_cell(), - max_dofs_per_face = fe_collection.max_dofs_per_face(); - - FullMatrix cell_matrix(max_dofs_per_cell, max_dofs_per_cell); - Vector cell_vector(max_dofs_per_cell); - UpdateFlags update_flags = UpdateFlags (update_values | update_JxW_values |