From: Timo Heister Date: Thu, 21 Nov 2013 22:17:34 +0000 (+0000) Subject: fix compiler warning X-Git-Tag: v8.1.0~213 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c12a694512ba9c06c392c7d1c8bdcea85d618ee9;p=dealii.git fix compiler warning git-svn-id: https://svn.dealii.org/trunk@31753 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/source/fe/mapping_q1.cc b/deal.II/source/fe/mapping_q1.cc index e8f7ec4dd5..5f53d1be59 100644 --- a/deal.II/source/fe/mapping_q1.cc +++ b/deal.II/source/fe/mapping_q1.cc @@ -1742,8 +1742,8 @@ transform_real_to_unit_cell_internal const double eps = 1.e-11; const unsigned int newton_iteration_limit = 20; - unsigned int newton_iteration=0; - double last_f_weighted_norm = -1./0.; + unsigned int newton_iteration = 0; + double last_f_weighted_norm; do { #ifdef DEBUG_TRANSFORM_REAL_TO_UNIT_CELL