From: Daniel Arndt <d.arndt@math.uni-goettingen.de>
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=29438ee2cbc257012866f4d5d3c5297f97088b32;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 <int dim>
 LaplaceProblem<dim>::LaplaceProblem (const unsigned int mapping_degree) :
   fe (1),
   dof_handler (triangulation),
-  mapping (mapping_degree)
+  mapping (mapping_degree),
+  last_error(std::numeric_limits<double>::max())
 {
   deallog << "Using mapping with degree " << mapping_degree << ":"
           << std::endl