From: David Wells <wellsd2@rpi.edu>
Date: Sat, 5 Nov 2016 02:24:39 +0000 (-0400)
Subject: Initialize an IntegrationInfo field.
X-Git-Tag: v8.5.0-rc1~462^2
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26a8e1f0ea16756804c9851185b1da807925f3c5;p=dealii.git

Initialize an IntegrationInfo field.

This number is correctly filled by IntegrationInfo::initialize, but this
way it starts out with a bogus value (instead of an undefined one).
---

diff --git a/include/deal.II/meshworker/integration_info.h b/include/deal.II/meshworker/integration_info.h
index 996a2d496c..0953ba6913 100644
--- a/include/deal.II/meshworker/integration_info.h
+++ b/include/deal.II/meshworker/integration_info.h
@@ -556,7 +556,8 @@ namespace MeshWorker
     :
     fevalv(0),
     multigrid(false),
-    global_data(std_cxx11::shared_ptr<VectorDataBase<dim, sdim> >(new VectorDataBase<dim, sdim>))
+    global_data(std_cxx11::shared_ptr<VectorDataBase<dim, sdim> >(new VectorDataBase<dim, sdim>)),
+    n_components(numbers::invalid_unsigned_int)
   {}