From 29438ee2cbc257012866f4d5d3c5297f97088b32 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Sun, 13 Nov 2016 19:39:17 +0100 Subject: [PATCH] Initialize all variables in quick_tests/step --- tests/quick_tests/step.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.39.5