From a13e470c2224f1cfa452fd182331b69e7bef91df Mon Sep 17 00:00:00 2001 From: heister Date: Fri, 1 Mar 2013 04:46:24 +0000 Subject: [PATCH] fix three warnings git-svn-id: https://svn.dealii.org/trunk@28671 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-44/step-44.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/deal.II/examples/step-44/step-44.cc b/deal.II/examples/step-44/step-44.cc index fb1014185e..e1f3495346 100644 --- a/deal.II/examples/step-44/step-44.cc +++ b/deal.II/examples/step-44/step-44.cc @@ -929,7 +929,7 @@ namespace Step44 PerTaskData_UQPH &data); void - copy_local_to_global_UQPH(const PerTaskData_UQPH &data) + copy_local_to_global_UQPH(const PerTaskData_UQPH &/*data*/) {} // Solve for the displacement using a Newton-Raphson method. We break this @@ -1765,7 +1765,7 @@ namespace Step44 void Solid::update_qph_incremental_one_cell(const typename DoFHandler::active_cell_iterator &cell, ScratchData_UQPH &scratch, - PerTaskData_UQPH &data) + PerTaskData_UQPH &/*data*/) { PointHistory *lqph = reinterpret_cast*>(cell->user_pointer()); @@ -2134,7 +2134,6 @@ namespace Step44 PointHistory *lqph = reinterpret_cast*>(cell->user_pointer()); - static const SymmetricTensor<2, dim> I = StandardTensors::I; for (unsigned int q_point = 0; q_point < n_q_points; ++q_point) { const Tensor<2, dim> F_inv = lqph[q_point].get_F_inv(); -- 2.39.5