From: Daniel Arndt Date: Sun, 13 Nov 2016 18:39:17 +0000 (+0100) Subject: Initialize all variables in quick_tests/step X-Git-Tag: v8.5.0-rc1~406^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3577%2Fhead;p=dealii.git Initialize all variables in quick_tests/step --- diff --git a/tests/quick_tests/step.cc b/tests/quick_tests/step.cc index b999ee5f72..185092ca2b 100644 --- a/tests/quick_tests/step.cc +++ b/tests/quick_tests/step.cc @@ -87,7 +87,8 @@ template LaplaceProblem::LaplaceProblem (const unsigned int mapping_degree) : fe (1), dof_handler (triangulation), - mapping (mapping_degree) + mapping (mapping_degree), + last_error(std::numeric_limits::max()) { deallog << "Using mapping with degree " << mapping_degree << ":" << std::endl